mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Add missing semicolons. [ci skip]
Former-commit-id: 7c9c39e84600f41d1a4f94224dfe5b2be8791d20
This commit is contained in:
2
dist/lodash.js
vendored
2
dist/lodash.js
vendored
@@ -2662,7 +2662,7 @@
|
||||
if (typeof length == 'number') {
|
||||
var result = Array(length);
|
||||
while (++index < length) {
|
||||
result[index] = collection[index][property]
|
||||
result[index] = collection[index][property];
|
||||
}
|
||||
}
|
||||
return result || map(collection, property);
|
||||
|
||||
10
dist/lodash.underscore.js
vendored
10
dist/lodash.underscore.js
vendored
@@ -180,7 +180,7 @@
|
||||
function lodash(value) {
|
||||
return (value instanceof lodash)
|
||||
? value
|
||||
: new lodashWrapper(value)
|
||||
: new lodashWrapper(value);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -632,7 +632,7 @@
|
||||
function clone(value) {
|
||||
return isObject(value)
|
||||
? (isArray(value) ? slice.call(value) : assign({}, value))
|
||||
: value
|
||||
: value;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1994,7 +1994,7 @@
|
||||
if (typeof length == 'number') {
|
||||
var result = Array(length);
|
||||
while (++index < length) {
|
||||
result[index] = collection[index][property]
|
||||
result[index] = collection[index][property];
|
||||
}
|
||||
}
|
||||
return result || map(collection, property);
|
||||
@@ -2416,7 +2416,7 @@
|
||||
result = [];
|
||||
|
||||
while (++index < length) {
|
||||
var value = array[index]
|
||||
var value = array[index];
|
||||
if (indexOf(flattened, value, length) < 0) {
|
||||
result.push(value);
|
||||
}
|
||||
@@ -3128,7 +3128,7 @@
|
||||
result = [];
|
||||
|
||||
while (++index < length) {
|
||||
var value = array[index]
|
||||
var value = array[index];
|
||||
if (indexOf(arguments, value, 1) < 0) {
|
||||
result.push(value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user