chore(package): re-init package with commitizen and standard-release

This commit is contained in:
Pavel Pertsev
2018-05-16 12:54:46 +03:00
parent cb4e7a5643
commit eaf2328575
10640 changed files with 609660 additions and 117 deletions

28
node_modules/rxjs/_esm2015/util/FastMap.js generated vendored Normal file
View File

@@ -0,0 +1,28 @@
export class FastMap {
constructor() {
this.values = {};
}
delete(key) {
this.values[key] = null;
return true;
}
set(key, value) {
this.values[key] = value;
return this;
}
get(key) {
return this.values[key];
}
forEach(cb, thisArg) {
const values = this.values;
for (let key in values) {
if (values.hasOwnProperty(key) && values[key] !== null) {
cb.call(thisArg, values[key], key);
}
}
}
clear() {
this.values = {};
}
}
//# sourceMappingURL=FastMap.js.map