Socket
Socket
Sign inDemoInstall

ext

Package Overview
Dependencies
1
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.1.0

object/entries/implement.js

6

CHANGELOG.md

@@ -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 @@

20

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc