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

@ndhoule/map

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ndhoule/map - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

4

component.json
{
"name": "map",
"repo": "ndhoule/map",
"version": "1.0.1",
"version": "1.0.2",
"description": "Apply a function to a each element of a collection and return a new array of results.",

@@ -11,3 +11,3 @@ "keywords": [

"dependencies": {
"ndhoule/each": "^1.0.0"
"ndhoule/each": "^1.0.3"
},

@@ -14,0 +14,0 @@ "development": {

@@ -0,1 +1,5 @@

## 1.0.2
- Fix Duo compatibility
## 1.0.1

@@ -2,0 +6,0 @@

@@ -7,3 +7,4 @@ 'use strict';

var each = require('@ndhoule/each');
// XXX: Hacky fix for Duo not supporting scoped modules
var each; try { each = require('@ndhoule/each'); } catch(e) { each = require('each'); }

@@ -10,0 +11,0 @@ /**

{
"name": "@ndhoule/map",
"version": "1.0.1",
"version": "1.0.2",
"description": "Apply a function to a each element of a collection and return a new array of results.",

@@ -20,3 +20,3 @@ "main": "index.js",

"dependencies": {
"@ndhoule/each": "^1.0.2"
"@ndhoule/each": "^1.0.3"
},

@@ -23,0 +23,0 @@ "devDependencies": {

@@ -5,4 +5,9 @@ /* global describe, it, beforeEach */

/**
* Module dependencies.
*/
var assert = require('assert');
var keys = require('@ndhoule/keys');
// XXX: Hacky fix for Duo not supporting scoped modules
var keys; try { keys = require('@ndhoule/keys'); } catch(e) { keys = require('keys'); }
var sinon = require('sinon');

@@ -9,0 +14,0 @@ var map = require('../');

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