@polkadot/trie-hash
Advanced tools
Comparing version 0.28.2 to 0.28.3
{ | ||
"name": "@polkadot/trie-hash", | ||
"version": "0.28.2", | ||
"version": "0.28.3", | ||
"description": "Creation of triehash values", | ||
@@ -30,13 +30,8 @@ "main": "index.js", | ||
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-hash#readme", | ||
"scripts": { | ||
"build": "polkadot-dev-build-babel && polkadot-dev-build-docs", | ||
"check": "eslint src && flow check", | ||
"test": "echo \"Tests only available from root wrapper\"" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.0.0-beta.51", | ||
"@polkadot/util": "^0.28.2", | ||
"@polkadot/util-crypto": "^0.28.2", | ||
"@polkadot/util-rlp": "^0.28.2" | ||
"@babel/runtime": "^7.0.0-rc.1", | ||
"@polkadot/util": "^0.28.3", | ||
"@polkadot/util-crypto": "^0.28.3", | ||
"@polkadot/util-rlp": "^0.28.3" | ||
} | ||
} |
@@ -10,3 +10,3 @@ "use strict"; | ||
var _keys = _interopRequireDefault(require("@babel/runtime/core-js/object/keys")); | ||
require("core-js/modules/web.dom.iterable"); | ||
@@ -25,3 +25,3 @@ require("core-js/modules/es6.array.sort"); | ||
}, {}); | ||
return (0, _keys.default)(map).sort().map(key => map[key]); | ||
return Object.keys(map).sort().map(key => map[key]); | ||
} |
36497
Updated@babel/runtime@^7.0.0-rc.1
Updated@polkadot/util@^0.28.3
Updated@polkadot/util-rlp@^0.28.3