diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-09 01:23:44 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-09 01:23:44 +0800 |
commit | d5757499bc0f828fbf86ffea2da8ad3941f1c33e (patch) | |
tree | 6f429e6f2b3050de6dd7ce16e42c7f387bd5018a /packages/0x.js/src/utils | |
parent | 139c8c2e783ffbbf22473604419fe3e5b299be0e (diff) | |
parent | af8d24d0eb5af781f4731b5559979f2b02579785 (diff) | |
download | dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.gz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.bz2 dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.lz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.xz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.zst dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.zip |
Merge branch 'feature/addSubproviders' into feature/portal-ledger-support
* feature/addSubproviders:
remove console.log
Update README.md
Fix unit test
Add missing params
Debug CircleCi failure
Update yarn.lock
Inline network module
Add todo
Stop supporting different file extensions in abi-gen
Refactor networkId out of web3Wrapper
Update connect types in preperation for publishing
Add link to random id generator
Remove `prebuild` command and add `test:circleci`
Fix CI command
Address feedback
Refactor web3Wrapper to a separate package
Diffstat (limited to 'packages/0x.js/src/utils')
-rw-r--r-- | packages/0x.js/src/utils/assert.ts | 2 | ||||
-rw-r--r-- | packages/0x.js/src/utils/promisify.ts | 24 |
2 files changed, 1 insertions, 25 deletions
diff --git a/packages/0x.js/src/utils/assert.ts b/packages/0x.js/src/utils/assert.ts index 3cff9d2cf..4cf6caf77 100644 --- a/packages/0x.js/src/utils/assert.ts +++ b/packages/0x.js/src/utils/assert.ts @@ -1,12 +1,12 @@ import {assert as sharedAssert} from '@0xproject/assert'; import {Schema, SchemaValidator} from '@0xproject/json-schemas'; +import {Web3Wrapper} from '@0xproject/web3-wrapper'; import BigNumber from 'bignumber.js'; import * as _ from 'lodash'; import * as Web3 from 'web3'; import {ECSignature} from '../types'; import {signatureUtils} from '../utils/signature_utils'; -import {Web3Wrapper} from '../web3_wrapper'; const HEX_REGEX = /^0x[0-9A-F]*$/i; diff --git a/packages/0x.js/src/utils/promisify.ts b/packages/0x.js/src/utils/promisify.ts deleted file mode 100644 index c114cf32f..000000000 --- a/packages/0x.js/src/utils/promisify.ts +++ /dev/null @@ -1,24 +0,0 @@ -import * as _ from 'lodash'; - -/** - * Transforms callback-based function -- func(arg1, arg2 .. argN, callback) -- into an ES6-compatible Promise. - * Promisify provides a default callback of the form (error, result) and rejects when `error` is not null. You can also - * supply thisArg object as the second argument which will be passed to `apply`. - */ -export function promisify<T>( - originalFn: ( - ...args: any[], - // HACK: This can't be properly typed without variadic kinds https://github.com/Microsoft/TypeScript/issues/5453 - ) => void, - thisArg?: any, -): (...callArgs: any[]) => Promise<T> { - const promisifiedFunction = async (...callArgs: any[]): Promise<T> => { - return new Promise<T>((resolve, reject) => { - const callback = (err: Error|null, data?: T) => { - _.isNull(err) ? resolve(data) : reject(err); - }; - originalFn.apply(thisArg, [...callArgs, callback]); - }); - }; - return promisifiedFunction; -} |