This repository was archived by the owner on Sep 3, 2022. It is now read-only.
File tree 5 files changed +20
-10
lines changed
5 files changed +20
-10
lines changed Original file line number Diff line number Diff line change
1
+ # 4.1.2 / 2020-09-16
2
+
3
+ - Replaces ` @ndhoule/extend ` with ` lodash.assignin `
4
+
1
5
# 4.1.1 / 2020-09-15
2
6
3
7
- Enable ` esModuleInterop ` in ` tsconfig.json `
Original file line number Diff line number Diff line change 2
2
3
3
import { InitOptions } from './types' ;
4
4
import cloneDeep from 'lodash.clonedeep'
5
+ import assignIn from 'lodash.assignin'
5
6
6
7
/*
7
8
* Module dependencies.
@@ -10,7 +11,6 @@ import cloneDeep from 'lodash.clonedeep'
10
11
var cookie = require ( './cookie' ) ;
11
12
var debug = require ( 'debug' ) ( 'analytics:entity' ) ;
12
13
var defaults = require ( '@ndhoule/defaults' ) ;
13
- var extend = require ( '@ndhoule/extend' ) ;
14
14
var memory = require ( './memory' ) ;
15
15
var store = require ( './store' ) ;
16
16
var isodateTraverse = require ( '@segment/isodate-traverse' ) ;
@@ -221,10 +221,16 @@ Entity.prototype._setTraits = function(traits: object) {
221
221
222
222
Entity . prototype . identify = function ( id ?: string , traits ?: object ) {
223
223
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
+
228
234
this . debug ( 'identify %o, %o' , id , traits ) ;
229
235
this . traits ( traits ) ;
230
236
this . save ( ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @segment/analytics.js-core" ,
3
3
"author" : " Segment <friends@segment.com>" ,
4
- "version" : " 4.1.1 " ,
4
+ "version" : " 4.1.2 " ,
5
5
"description" : " The hassle-free way to integrate analytics into any web application." ,
6
6
"types" : " lib/index.d.ts" ,
7
7
"keywords" : [
31
31
"homepage" : " https://github.com/segmentio/analytics.js-core#readme" ,
32
32
"dependencies" : {
33
33
"@ndhoule/defaults" : " ^2.0.1" ,
34
- "@ndhoule/extend" : " ^2.0.0" ,
35
34
"@ndhoule/includes" : " ^2.0.1" ,
36
35
"@ndhoule/pick" : " ^2.0.0" ,
37
36
"@segment/canonical" : " ^1.0.0" ,
54
53
"inherits" : " ^2.0.1" ,
55
54
"install" : " ^0.7.3" ,
56
55
"is" : " ^3.1.0" ,
56
+ "lodash.assignin" : " ^4.2.0" ,
57
57
"lodash.clonedeep" : " ^4.5.0" ,
58
58
"new-date" : " ^1.0.0" ,
59
59
"next-tick" : " ^0.2.2" ,
Original file line number Diff line number Diff line change 1
- 'use strict' ;
1
+ import assignIn from 'lodash.assignin'
2
2
3
3
var Analytics = require ( '../build' ) . constructor ;
4
4
var Facade = require ( 'segmentio-facade' ) ;
5
5
var analytics = require ( '../build' ) ;
6
6
var assert = require ( 'proclaim' ) ;
7
7
var bind = require ( 'component-event' ) . bind ;
8
8
var createIntegration = require ( '@segment/analytics.js-integration' ) ;
9
- var extend = require ( '@ndhoule/extend' ) ;
10
9
var type = require ( 'component-type' ) ;
11
10
var pageDefaults = require ( '../build/pageDefaults' ) ;
12
11
var sinon = require ( 'sinon' ) ;
@@ -836,7 +835,7 @@ describe('Analytics', function() {
836
835
assert . deepEqual ( opts , { context : { page : defaults } } ) ;
837
836
assert . deepEqual (
838
837
props ,
839
- extend ( defaults , { category : 'category' , name : 'name' } )
838
+ assignIn ( { category : 'category' , name : 'name' } , defaults )
840
839
) ;
841
840
done ( ) ;
842
841
} ) ;
Original file line number Diff line number Diff line change @@ -5994,6 +5994,7 @@ lodash.assign@^4.2.0:
5994
5994
lodash.assignin@^4.2.0 :
5995
5995
version "4.2.0"
5996
5996
resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
5997
+ integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI=
5997
5998
5998
5999
lodash.clone@^4.5.0 :
5999
6000
version "4.5.0"
You can’t perform that action at this time.
0 commit comments