aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/assert.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-21 20:11:06 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-21 20:11:06 +0800
commita1c363a8af3cbfa2d843aaf7ddd05390db7b8f9b (patch)
tree7f4d4ee9ad766860288d22ee7875f70f0d951af0 /src/utils/assert.ts
parent40a7be0690c81d2e42543aa075ef8da6606e7b7e (diff)
downloaddexon-0x-contracts-a1c363a8af3cbfa2d843aaf7ddd05390db7b8f9b.tar.gz
dexon-0x-contracts-a1c363a8af3cbfa2d843aaf7ddd05390db7b8f9b.tar.zst
dexon-0x-contracts-a1c363a8af3cbfa2d843aaf7ddd05390db7b8f9b.zip
Fall back to import x = require() syntax
Diffstat (limited to 'src/utils/assert.ts')
-rw-r--r--src/utils/assert.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/utils/assert.ts b/src/utils/assert.ts
index c4f1915e7..efc7ed366 100644
--- a/src/utils/assert.ts
+++ b/src/utils/assert.ts
@@ -1,10 +1,10 @@
-import uniq from 'lodash/uniq';
-import isEmpty from 'lodash/isEmpty';
-import isObject from 'lodash/isObject';
-import isFinite from 'lodash/isFinite';
-import isString from 'lodash/isString';
-import isBoolean from 'lodash/isBoolean';
-import isUndefined from 'lodash/isUndefined';
+import uniq = require('lodash/uniq');
+import isEmpty = require('lodash/isEmpty');
+import isObject = require('lodash/isObject');
+import isFinite = require('lodash/isFinite');
+import isString = require('lodash/isString');
+import isBoolean = require('lodash/isBoolean');
+import isUndefined = require('lodash/isUndefined');
import * as BigNumber from 'bignumber.js';
import * as Web3 from 'web3';
import {Web3Wrapper} from '../web3_wrapper';