lodash.words
Advanced tools
Comparing version 3.1.0 to 3.1.1
19
index.js
/** | ||
* lodash 3.1.0 (Custom Build) <https://lodash.com/> | ||
* lodash 3.1.1 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="npm" -o ./` | ||
@@ -18,2 +18,4 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
var rsAstralRange = '\\ud800-\\udfff', | ||
rsComboMarksRange = '\\u0300-\\u036f\\ufe20-\\ufe23', | ||
rsComboSymbolsRange = '\\u20d0-\\u20f0', | ||
rsDingbatRange = '\\u2700-\\u27bf', | ||
@@ -31,2 +33,3 @@ rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', | ||
var rsBreak = '[' + rsBreakRange + ']', | ||
rsCombo = '[' + rsComboMarksRange + rsComboSymbolsRange + ']', | ||
rsDigits = '\\d+', | ||
@@ -36,3 +39,4 @@ rsDingbat = '[' + rsDingbatRange + ']', | ||
rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', | ||
rsModifier = '(?:\\ud83c[\\udffb-\\udfff])', | ||
rsFitz = '\\ud83c[\\udffb-\\udfff]', | ||
rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', | ||
rsNonAstral = '[^' + rsAstralRange + ']', | ||
@@ -61,3 +65,4 @@ rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', | ||
rsUpper + '?' + rsLowerMisc + '+', | ||
rsDigits + '(?:' + rsLowerMisc + '+)?', | ||
rsUpper + '+', | ||
rsDigits, | ||
rsEmoji | ||
@@ -79,7 +84,7 @@ ].join('|'), 'g'); | ||
/** Built-in value references. */ | ||
var _Symbol = global.Symbol; | ||
var Symbol = global.Symbol; | ||
/** Used to convert symbols to primitives and strings. */ | ||
var symbolProto = _Symbol ? _Symbol.prototype : undefined, | ||
symbolToString = _Symbol ? symbolProto.toString : undefined; | ||
var symbolProto = Symbol ? Symbol.prototype : undefined, | ||
symbolToString = Symbol ? symbolProto.toString : undefined; | ||
@@ -163,3 +168,3 @@ /** | ||
if (isSymbol(value)) { | ||
return _Symbol ? symbolToString.call(value) : ''; | ||
return Symbol ? symbolToString.call(value) : ''; | ||
} | ||
@@ -166,0 +171,0 @@ var result = (value + ''); |
{ | ||
"name": "lodash.words", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "The lodash method `_.words` exported as a module.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/", |
@@ -1,2 +0,2 @@ | ||
# lodash.words v3.1.0 | ||
# lodash.words v3.1.1 | ||
@@ -18,2 +18,2 @@ The [lodash](https://lodash.com/) method `_.words` exported as a [Node.js](https://nodejs.org/) module. | ||
See the [documentation](https://lodash.com/docs#words) or [package source](https://github.com/lodash/lodash/blob/3.1.0-npm-packages/lodash.words) for more details. | ||
See the [documentation](https://lodash.com/docs#words) or [package source](https://github.com/lodash/lodash/blob/3.1.1-npm-packages/lodash.words) for more details. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8748
179