aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/utils
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-12-15 00:48:45 +0800
committerGitHub <noreply@github.com>2017-12-15 00:48:45 +0800
commita0aa21103b51ad287de1579832a4a490ca90175a (patch)
treed65274497474e65302a91e78efa1796558aa4380 /packages/0x.js/src/utils
parentd69143487ec441939a85ef2a7e92bb0a15cb2e6c (diff)
parentce242b10e2c4d35bbba3842d198b78373dd609f0 (diff)
downloaddexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar
dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.gz
dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.bz2
dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.lz
dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.xz
dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.zst
dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.zip
Merge pull request #258 from 0xProject/feature/contracts-refactor
A bunch of refactorings
Diffstat (limited to 'packages/0x.js/src/utils')
-rw-r--r--packages/0x.js/src/utils/class_utils.ts18
-rw-r--r--packages/0x.js/src/utils/interval_utils.ts20
2 files changed, 0 insertions, 38 deletions
diff --git a/packages/0x.js/src/utils/class_utils.ts b/packages/0x.js/src/utils/class_utils.ts
deleted file mode 100644
index 04e60ee57..000000000
--- a/packages/0x.js/src/utils/class_utils.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import * as _ from 'lodash';
-
-export const classUtils = {
- // This is useful for classes that have nested methods. Nested methods don't get bound out of the box.
- bindAll(self: any, exclude: string[] = ['contructor'], thisArg?: any): void {
- for (const key of Object.getOwnPropertyNames(self)) {
- const val = self[key];
- if (!_.includes(exclude, key)) {
- if (_.isFunction(val)) {
- self[key] = val.bind(thisArg || self);
- } else if (_.isObject(val)) {
- classUtils.bindAll(val, exclude, self);
- }
- }
- }
- return self;
- },
-};
diff --git a/packages/0x.js/src/utils/interval_utils.ts b/packages/0x.js/src/utils/interval_utils.ts
deleted file mode 100644
index 62b79f2f5..000000000
--- a/packages/0x.js/src/utils/interval_utils.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import * as _ from 'lodash';
-
-export const intervalUtils = {
- setAsyncExcludingInterval(fn: () => Promise<void>, intervalMs: number) {
- let locked = false;
- const intervalId = setInterval(async () => {
- if (locked) {
- return;
- } else {
- locked = true;
- await fn();
- locked = false;
- }
- }, intervalMs);
- return intervalId;
- },
- clearAsyncExcludingInterval(intervalId: NodeJS.Timer): void {
- clearInterval(intervalId);
- },
-};