Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 52783fe

Browse files
committed
Revert "Replace @ndhoule/extend with lodash.assignin (#206)"
This reverts commit 017124b.
1 parent 89afbca commit 52783fe

File tree

5 files changed

+13
-16
lines changed

5 files changed

+13
-16
lines changed

HISTORY.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<<<<<<< HEAD
22
<<<<<<< HEAD
3+
<<<<<<< HEAD
34

45
# 4.1.7 / 2021-03-17
56

@@ -32,6 +33,8 @@
3233

3334
- Replaces `@ndhoule/extend` with `lodash.assignin`
3435

36+
=======
37+
>>>>>>> parent of 017124b... Replace @ndhoule/extend with lodash.assignin (#206)
3538
# 4.1.1 / 2020-09-15
3639

3740
- Enable `esModuleInterop` in `tsconfig.json`

lib/entity.ts

+5-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import { InitOptions } from './types';
44
import cloneDeep from 'lodash.clonedeep'
5-
import assignIn from 'lodash.assignin'
65

76
/*
87
* Module dependencies.
@@ -11,6 +10,7 @@ import assignIn from 'lodash.assignin'
1110
var cookie = require('./cookie');
1211
var debug = require('debug')('analytics:entity');
1312
var defaults = require('@ndhoule/defaults');
13+
var extend = require('@ndhoule/extend');
1414
var memory = require('./memory');
1515
var store = require('./store');
1616
var isodateTraverse = require('@segment/isodate-traverse');
@@ -221,16 +221,10 @@ Entity.prototype._setTraits = function(traits: object) {
221221

222222
Entity.prototype.identify = function(id?: string, traits?: object) {
223223
traits = traits || {};
224-
const current = this.id();
225-
226-
if (current === null || current === id) {
227-
traits = assignIn(this.traits(), traits);
228-
}
229-
230-
if (id) {
231-
this.id(id);
232-
}
233-
224+
var current = this.id();
225+
if (current === null || current === id)
226+
traits = extend(this.traits(), traits);
227+
if (id) this.id(id);
234228
this.debug('identify %o, %o', id, traits);
235229
this.traits(traits);
236230
this.save();

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@segment/analytics.js-core",
33
"author": "Segment <[email protected]>",
4-
"version": "4.1.2",
4+
"version": "4.1.1",
55
"description": "The hassle-free way to integrate analytics into any web application.",
66
"types": "lib/index.d.ts",
77
"keywords": [
@@ -31,6 +31,7 @@
3131
"homepage": "https://github.com/segmentio/analytics.js-core#readme",
3232
"dependencies": {
3333
"@ndhoule/defaults": "^2.0.1",
34+
"@ndhoule/extend": "^2.0.0",
3435
"@ndhoule/includes": "^2.0.1",
3536
"@ndhoule/pick": "^2.0.0",
3637
"@segment/canonical": "^1.0.0",
@@ -52,7 +53,6 @@
5253
"inherits": "^2.0.1",
5354
"install": "^0.7.3",
5455
"is": "^3.1.0",
55-
"lodash.assignin": "^4.2.0",
5656
"lodash.clonedeep": "^4.5.0",
5757
"new-date": "^1.0.0",
5858
"next-tick": "^0.2.2",

test/analytics.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
import assignIn from 'lodash.assignin'
1+
'use strict';
22

33
var Analytics = require('../build').constructor;
44
var Facade = require('segmentio-facade');
55
var analytics = require('../build');
66
var assert = require('proclaim');
77
var bind = require('component-event').bind;
88
var createIntegration = require('@segment/analytics.js-integration');
9+
var extend = require('@ndhoule/extend');
910
var type = require('component-type');
1011
var pageDefaults = require('../build/pageDefaults');
1112
var sinon = require('sinon');
@@ -835,7 +836,7 @@ describe('Analytics', function() {
835836
assert.deepEqual(opts, { context: { page: defaults } });
836837
assert.deepEqual(
837838
props,
838-
assignIn({ category: 'category', name: 'name' }, defaults)
839+
extend(defaults, { category: 'category', name: 'name' })
839840
);
840841
done();
841842
});

yarn.lock

-1
Original file line numberDiff line numberDiff line change
@@ -6347,7 +6347,6 @@ lodash.assign@^4.2.0:
63476347
lodash.assignin@^4.2.0:
63486348
version "4.2.0"
63496349
resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
6350-
integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI=
63516350

63526351
lodash.camelcase@^4.3.0:
63536352
version "4.3.0"

0 commit comments

Comments
 (0)