Socket
Socket
Sign inDemoInstall

lodash-webpack-plugin

Package Overview
Dependencies
1
Maintainers
3
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.9.4 to 0.10.0

15

lib/mapping.js

@@ -12,11 +12,13 @@ 'use strict';

'collections': [['_baseAggregator', '_arrayAggregator'], ['_baseFilter', '_arrayFilter'], ['_baseMap', '_arrayMap'], ['each', '_arrayEach'], ['eachRight', '_arrayEachRight'], ['every', '_arrayEvery'], ['filter', '_arrayFilter'], ['forEach', '_arrayEach'], ['forEachRight', '_arrayEachRight'], ['includes', '_arrayIncludes'], ['map', '_arrayMap'], ['reduce', '_arrayReduce'], ['reduceRight', '_arrayReduceRight'], ['some', '_arraySome']],
'currying': [['_createWrap', '_createPartial'], ['_createWrapper', '_createPartialWrapper'], ['unary', '_baseUnary']],
'exotics': [['_equalByTag', 'eq'], ['_getSymbols', 'stubArray'], ['_getSymbolsIn', 'stubArray'], ['_getTag', '_baseGetTag'], ['_initCloneByTag', 'identity'], ['_mapToArray', 'stubArray'], ['_setToArray', 'stubArray'], ['_setToPairs', 'stubArray'], ['isArguments', 'stubFalse'], ['isArrayBuffer', 'baseIsArrayBuffer'], ['isBuffer', 'stubFalse'], ['isDate', 'baseIsDate'], ['isMap', 'baseIsMap'], ['isRegExp', 'baseIsRegExp'], ['isSet', 'baseIsSet'], ['isSymbol', 'stubFalse'], ['isTypedArray', 'baseIsTypedArray'], ['isTypedArray', 'stubFalse']],
'currying': [['_createWrap', '_createPartial'], ['unary', '_baseUnary']],
'deburring': [['deburr', 'identity']],
'exotics': [['_equalByTag', 'eq'], ['_getSymbols', 'stubArray'], ['_getSymbolsIn', 'stubArray'], ['_getTag', '_baseGetTag'], ['_initCloneByTag', 'identity'], ['_mapToArray', 'stubArray'], ['_setToArray', 'stubArray'], ['_setToPairs', 'stubArray'], ['isArguments', 'stubFalse'], ['isArrayBuffer', 'baseIsArrayBuffer'], ['isBuffer', 'stubFalse'], ['isDate', 'baseIsDate'], ['isMap', 'stubFalse'], ['isRegExp', 'baseIsRegExp'], ['isSet', 'stubFalse'], ['isSymbol', 'stubFalse'], ['isTypedArray', 'stubFalse']],
'flattening': [['_baseFlatten', 'head']],
'guards': [['_getNative', '_getValue'], ['_isHostObject', 'stubFalse'], ['_isIterateeCall', 'stubFalse'], ['_isPrototype', 'stubFalse'], ['_baseKeys', '_nativeKeys'], ['_baseKeysIn', '_nativeKeysIn'], ['isNaN', 'baseIsNaN'], ['isNative', 'stubTrue'], ['keys', '_nativeKeys'], ['keysIn', '_nativeKeysIn'], ['keys', '_baseKeys'], ['keysIn', '_baseKeysIn'], ['times', '_baseTimes']],
'guards': [['_getNative', '_getValue'], ['_isHostObject', 'stubFalse'], ['_isIterateeCall', 'stubFalse'], ['_isPrototype', 'stubFalse'], ['_baseKeys', '_nativeKeys'], ['_baseKeysIn', '_nativeKeysIn'], ['isNaN', 'baseIsNaN'], ['isNative', 'stubTrue'], ['keys', '_nativeKeys'], ['keysIn', '_nativeKeysIn'], ['times', '_baseTimes']],
'memoizing': [['memoize', 'identity']],
'metadata': [['_baseSetData', 'identity'], ['_getData', 'noop'], ['_mergeData', 'identity'], ['_setData', 'identity']],
'metadata': [['_baseSetData', 'identity'], ['_getData', 'noop'], ['_mergeData', 'identity'], ['_setData', 'identity'], ['_setWrapToString', 'identity']],
'paths': [['_baseGet', '_getValue'], ['_castPath', 'identity'], ['_isKey', 'identity'], ['has', '_baseHas'], ['hasIn', '_baseHasIn'], ['property', '_baseProperty'], ['propertyOf', '_basePropertyOf']],
'placeholders': [['_composeArgs', 'identity'], ['_composeArgsRight', 'identity'], ['_getHolder', 'noop'], ['_replaceHolders', 'stubArray']],
'shorthands': [['_baseIteratee', 'identity'], ['_isFlattenableIteratee', 'isArray']]
'shorthands': [['_baseIteratee', 'identity']],
'unicode': [['_hasUnicode', 'stubFalse'], ['_hasUnicodeWord', 'stubFalse'], ['_unicodeSize', '_asciiSize'], ['_unicodeToArray', '_asciiToArray'], ['_unicodeWords', '_asciiWords'], ['stringSize', '_asciiSize'], ['stringToArray', '_asciiToArray']]
};

@@ -40,5 +42,2 @@

'flip': { 'currying': true },
'isMap': { 'exotics': true },
'isSymbol': { 'exotics': true },
'isWeakMap': { 'exotics': true },
'partialRight': { 'currying': true },

@@ -45,0 +44,0 @@ 'rearg': { 'currying': true }

{
"name": "lodash-webpack-plugin",
"version": "0.9.4",
"version": "0.10.0",
"description": "Smaller modular Lodash builds.",

@@ -21,3 +21,3 @@ "keywords": "lodash, modules, webpack-plugin",

"dependencies": {
"lodash": "^4.14.1"
"lodash": "^4.14.2"
},

@@ -36,3 +36,4 @@ "devDependencies": {

"memory-fs": "^0.3.0",
"mocha": "^3.0.1",
"mocha": "^3.0.2",
"pretty-bytes": "^3.0.1",
"webpack": "^1.13.1"

@@ -39,0 +40,0 @@ },

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

# lodash-webpack-plugin v0.9.4
# lodash-webpack-plugin v0.10.0

@@ -69,8 +69,10 @@ Create smaller Lodash builds by replacing [feature sets](#feature-sets) of modules

| `guards` | Guards for host objects, sparse arrays, & other edge cases. |
| `metadata` | Metadata to reduce wrapping of bound, curried, & partially applied functions.<br>_(requires `currying`)_ |
| `deburring` | Support deburring letters. |
| `unicode` | Support Unicode symbols. |
| `chaining` | Components to support chain sequences. |
| `memoizing` | Support `_.memoize` & memoization. |
| `coercions` | Coercion methods like `_.toInteger`, `_.toNumber`, & `_.toString`. |
| `flattening` | Support “flatten” methods & flattening rest arguments. |
| `paths` | Deep property path support for methods like `_.get`, `_.has`, & `_.set`. |
| `memoizing` | Support `_.memoize` & memoization. |
| `chaining` | Components to support chain sequences. |
| `metadata` | Metadata to reduce wrapping of bound, curried, & partially applied functions.<br>_(requires `currying`)_ |
| `placeholders` | Argument placeholder support for “bind”, “curry”, & “partial” methods.<br>_(requires `currying`)_ |
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc