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

Commit 017124b

Browse files
authoredSep 16, 2020
Replace @ndhoule/extend with lodash.assignin (#206)
1 parent d1adf60 commit 017124b

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed
 

‎HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 4.1.2 / 2020-09-16
2+
3+
- Replaces `@ndhoule/extend` with `lodash.assignin`
4+
15
# 4.1.1 / 2020-09-15
26

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

‎lib/entity.ts

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

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

67
/*
78
* Module dependencies.
@@ -10,7 +11,6 @@ import cloneDeep from 'lodash.clonedeep'
1011
var cookie = require('./cookie');
1112
var debug = require('debug')('analytics:entity');
1213
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,10 +221,16 @@ Entity.prototype._setTraits = function(traits: object) {
221221

222222
Entity.prototype.identify = function(id?: string, traits?: object) {
223223
traits = traits || {};
224-
var current = this.id();
225-
if (current === null || current === id)
226-
traits = extend(this.traits(), traits);
227-
if (id) this.id(id);
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+
228234
this.debug('identify %o, %o', id, traits);
229235
this.traits(traits);
230236
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 <friends@segment.com>",
4-
"version": "4.1.1",
4+
"version": "4.1.2",
55
"description": "The hassle-free way to integrate analytics into any web application.",
66
"types": "lib/index.d.ts",
77
"keywords": [
@@ -31,7 +31,6 @@
3131
"homepage": "https://github.com/segmentio/analytics.js-core#readme",
3232
"dependencies": {
3333
"@ndhoule/defaults": "^2.0.1",
34-
"@ndhoule/extend": "^2.0.0",
3534
"@ndhoule/includes": "^2.0.1",
3635
"@ndhoule/pick": "^2.0.0",
3736
"@segment/canonical": "^1.0.0",
@@ -54,6 +53,7 @@
5453
"inherits": "^2.0.1",
5554
"install": "^0.7.3",
5655
"is": "^3.1.0",
56+
"lodash.assignin": "^4.2.0",
5757
"lodash.clonedeep": "^4.5.0",
5858
"new-date": "^1.0.0",
5959
"next-tick": "^0.2.2",

‎test/analytics.test.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
'use strict';
1+
import assignIn from 'lodash.assignin'
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');
109
var type = require('component-type');
1110
var pageDefaults = require('../build/pageDefaults');
1211
var sinon = require('sinon');
@@ -836,7 +835,7 @@ describe('Analytics', function() {
836835
assert.deepEqual(opts, { context: { page: defaults } });
837836
assert.deepEqual(
838837
props,
839-
extend(defaults, { category: 'category', name: 'name' })
838+
assignIn({ category: 'category', name: 'name' }, defaults)
840839
);
841840
done();
842841
});

‎yarn.lock

+1
Original file line numberDiff line numberDiff line change
@@ -5994,6 +5994,7 @@ lodash.assign@^4.2.0:
59945994
lodash.assignin@^4.2.0:
59955995
version "4.2.0"
59965996
resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
5997+
integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI=
59975998

59985999
lodash.clone@^4.5.0:
59996000
version "4.5.0"

0 commit comments

Comments
 (0)
This repository has been archived.