1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

underscoreコードリーディング(extendOwn)

Posted at

underscoreに詳しくないので、勉強半分でソースコードを読む。

##利用するバージョン
underscore.js(v1.8.3)

##extendOwnとは

###underscorejs.orgのextendOwn

こんな説明。

####_.extendOwn(destination, *sources) Alias: assign
Like extend, but only copies own properties over to the destination object.


extendににているけども、destination自身のpropertyだけをコピーします。

###underscore.extendOwn
コード的にはこのあたり。


  // Assigns a given object with all the own properties in the passed-in object(s)
  // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)
  _.extendOwn = _.assign = createAssigner(_.keys);

.assignも同じ。
.extendは.allKeysを用いていたが、
.extendOwnは_.keysを用いる。
allKeysはprototypeも引っ張るが、keysはそれは返ってこない。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?