Socket
Socket
Sign inDemoInstall

lodash

Package Overview
Dependencies
0
Maintainers
5
Versions
114
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.9.0 to 3.9.1

6

internal/bufferClone.js

@@ -5,6 +5,6 @@ var constant = require('../utility/constant'),

/** Native method references. */
var ArrayBuffer = getNative(root, 'ArrayBuffer'),
var ArrayBuffer = getNative(global, 'ArrayBuffer'),
bufferSlice = getNative(ArrayBuffer && new ArrayBuffer(0), 'slice'),
floor = Math.floor,
Uint8Array = getNative(root, 'Uint8Array');
Uint8Array = getNative(global, 'Uint8Array');

@@ -17,3 +17,3 @@ /** Used to clone array buffers. */

try {
var func = getNative(root, 'Float64Array'),
var func = getNative(global, 'Float64Array'),
result = new func(new ArrayBuffer(10), 0, 1) && func;

@@ -20,0 +20,0 @@ } catch(e) {}

@@ -6,3 +6,3 @@ var SetCache = require('./SetCache'),

/** Native method references. */
var Set = getNative(root, 'Set');
var Set = getNative(global, 'Set');

@@ -9,0 +9,0 @@ /* Native method references for those with the same name as other `lodash` methods. */

var getNative = require('./getNative');
/** Native method references. */
var WeakMap = getNative(root, 'WeakMap');
var WeakMap = getNative(global, 'WeakMap');

@@ -6,0 +6,0 @@ /** Used to store function metadata. */

@@ -5,3 +5,3 @@ var cachePush = require('./cachePush'),

/** Native method references. */
var Set = getNative(root, 'Set');
var Set = getNative(global, 'Set');

@@ -8,0 +8,0 @@ /* Native method references for those with the same name as other `lodash` methods. */

@@ -17,3 +17,3 @@ var baseIsFunction = require('../internal/baseIsFunction'),

/** Native method references. */
var Uint8Array = getNative(root, 'Uint8Array');
var Uint8Array = getNative(global, 'Uint8Array');

@@ -20,0 +20,0 @@ /**

{
"name": "lodash",
"version": "3.9.0",
"version": "3.9.1",
"description": "The modern build of lodash modular utilities.",

@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/",

@@ -1,2 +0,2 @@

# lodash v3.9.0
# lodash v3.9.1

@@ -31,3 +31,3 @@ The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) modules.

See the [package source](https://github.com/lodash/lodash/tree/3.9.0-npm) for more details.
See the [package source](https://github.com/lodash/lodash/tree/3.9.1-npm) for more details.

@@ -43,4 +43,4 @@ **Note:**<br>

* npm packages for [modern](https://www.npmjs.com/package/lodash), [compatibility](https://www.npmjs.com/package/lodash-compat), & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) builds
* AMD modules for [modern](https://github.com/lodash/lodash/tree/3.9.0-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.9.0-amd) builds
* ES modules for the [modern](https://github.com/lodash/lodash/tree/3.9.0-es) build
* AMD modules for [modern](https://github.com/lodash/lodash/tree/3.9.1-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.9.1-amd) builds
* ES modules for the [modern](https://github.com/lodash/lodash/tree/3.9.1-es) build

@@ -47,0 +47,0 @@ ## Further Reading

Sorry, the diff of this file is too big to display

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