diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-06-21 21:04:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-21 21:04:13 +0800 |
commit | 8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3 (patch) | |
tree | 15b9aa5b849d896248541722b7f2dfed6c458749 /src/web3_wrapper.ts | |
parent | ef96c58b7f7d0ce678e8eb4f662b2f6a31e8799a (diff) | |
parent | a1c363a8af3cbfa2d843aaf7ddd05390db7b8f9b (diff) | |
download | dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.tar dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.tar.gz dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.tar.bz2 dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.tar.lz dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.tar.xz dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.tar.zst dexon-sol-tools-8af7d2303ecf9d4d3cdc967a81ef577b9f8739d3.zip |
Merge pull request #71 from 0xProject/lodash-tree-shake
Use different lodash import syntax which allows to include only used functions
Diffstat (limited to 'src/web3_wrapper.ts')
-rw-r--r-- | src/web3_wrapper.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web3_wrapper.ts b/src/web3_wrapper.ts index 6bdca499f..d7cf6df58 100644 --- a/src/web3_wrapper.ts +++ b/src/web3_wrapper.ts @@ -1,4 +1,4 @@ -import * as _ from 'lodash'; +import includes = require('lodash/includes'); import * as Web3 from 'web3'; import * as BigNumber from 'bignumber.js'; import promisify = require('es6-promisify'); @@ -17,7 +17,7 @@ export class Web3Wrapper { } public async isSenderAddressAvailableAsync(senderAddress: string): Promise<boolean> { const addresses = await this.getAvailableAddressesAsync(); - return _.includes(addresses, senderAddress); + return includes(addresses, senderAddress); } public async getNodeVersionAsync(): Promise<string> { const nodeVersion = await promisify(this.web3.version.getNode)(); |