Comparing version 1.0.3 to 1.1.0
@@ -5,2 +5,8 @@ # Changelog | ||
## [1.1.0](https://github.com/medikoo/ext/compare/v1.0.3...v1.1.0) (2019-10-21) | ||
### Features | ||
- Object.entries implementation ([cf51e45](https://github.com/medikoo/ext/commit/cf51e45)) | ||
### [1.0.3](https://github.com/medikoo/ext/compare/v1.0.1...v1.0.3) (2019-07-03) | ||
@@ -7,0 +13,0 @@ |
{ | ||
"name": "ext", | ||
"version": "1.0.3", | ||
"version": "1.1.0", | ||
"description": "JavaScript utilities with respect to emerging standard", | ||
@@ -28,14 +28,14 @@ "author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)", | ||
"dependencies": { | ||
"type": "^1.0.1" | ||
"type": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"chai": "^4.2.0", | ||
"eslint": "^6.0.1", | ||
"eslint-config-medikoo-es3": "^2.2.0", | ||
"git-list-updated": "^1.2.0", | ||
"husky": "^3.0.0", | ||
"lint-staged": "^9.0.2", | ||
"mocha": "^6.1.4", | ||
"eslint": "^6.5.1", | ||
"eslint-config-medikoo": "^2.6.0", | ||
"git-list-updated": "^1.2.1", | ||
"husky": "^3.0.9", | ||
"lint-staged": "^9.4.2", | ||
"mocha": "^6.2.2", | ||
"prettier-elastic": "^1.18.2", | ||
"sinon": "^7.3.2" | ||
"sinon": "^7.5.0" | ||
}, | ||
@@ -59,3 +59,3 @@ "husky": { | ||
"eslintConfig": { | ||
"extends": "medikoo-es3", | ||
"extends": "medikoo/es3", | ||
"root": true, | ||
@@ -62,0 +62,0 @@ "overrides": [ |
@@ -31,2 +31,16 @@ # ext | ||
#### Object | ||
##### `Object.entries` _(ext/object/entries)_ | ||
[Object.entries](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries) implementation. | ||
Returns native `Object.entries` if it's implemented, otherwise library implementation is returned | ||
```javascript | ||
const entries = require("ext/object/entries"); | ||
entries({ foo: "bar" }); // [["foo", "bar"]] | ||
``` | ||
#### Function | ||
@@ -33,0 +47,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
13735
23
206
68
0
+ Addedtype@2.7.3(transitive)
- Removedtype@1.2.0(transitive)
Updatedtype@^2.0.0