Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

array-keys

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-keys - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

.npmignore

28

array-keys.js
/*!
* array-keys
* version 1.1.0
* version 1.1.1
* http://github.com/silverbucket/array-keys

@@ -19,5 +19,12 @@ *

(function (global, factory, undefined) {
(function () {
if ( typeof module === 'object' && typeof module.exports === 'object' ) {
module.exports = (global.document) ? factory(global) : factory({});
} else {
factory(global);
}
}((typeof window !== 'undefined') ? window : this, function (scope, undefined) {
function ArrayKeys(p) {

@@ -78,12 +85,11 @@ if (typeof p !== 'object') { p = {}; }

if (typeof window === 'object') {
window.ArrayKeys = ArrayKeys;
} else if (typeof (define) === 'function' && define.amd) {
define([], function () { return ArrayKeys; });
} else {
try {
module.exports = ArrayKeys;
} catch (e) {}
if ( typeof define === 'function' && define.amd ) {
define([], function() {
return ArrayKeys;
});
}
})();
scope.ArrayKeys = ArrayKeys;
return ArrayKeys;
}));
{
"name": "array-keys",
"version": "1.1.0",
"version": "1.1.1",
"description": "a simple interface to manage large arrays of objects easily",

@@ -5,0 +5,0 @@ "license": "LGPL",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc