Skip to content

Commit eee13b0

Browse files
committed
Fixed lint issues
1 parent 3e9583e commit eee13b0

File tree

1 file changed

+2
-4
lines changed
  • packages/optimizely-sdk/lib/utils/fns

1 file changed

+2
-4
lines changed

packages/optimizely-sdk/lib/utils/fns/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@
1414
* limitations under the License.
1515
*/
1616
var uuid = require('uuid');
17-
var _isFinite = require('lodash/isFinite');
18-
var keyBy = require('@optimizely/js-sdk-utils').keyBy;
1917
var MAX_NUMBER_LIMIT = Math.pow(2, 53);
20-
18+
var keyBy = require('@optimizely/js-sdk-utils').keyBy;
2119
module.exports = {
2220
assign: function (target) {
2321
if (!target) {
@@ -29,7 +27,7 @@ module.exports = {
2927
var to = Object(target);
3028
for (var index = 1; index < arguments.length; index++) {
3129
var nextSource = arguments[index];
32-
if (nextSource !== null && nextSource !== undefined) {
30+
if (nextSource !== null && nextSource !== undefined) {
3331
for (var nextKey in nextSource) {
3432
// Avoid bugs when hasOwnProperty is shadowed
3533
if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {

0 commit comments

Comments
 (0)