You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation does not distinguish between static and instance methods, making pages like this confusing: http://www.collectionsjs.com/object
For example, there are two clone methods:
the static method: Object.clone(object, depth, memo)
and the instance method: someCollection.clone(depth, memo)
Only the latter is shown on the documentation for Object. However, only the former is actually implemented for Object. The latter is only available on collections.
Perhaps I'm mistaken? I'm just starting to read through the documentation to grok this library.
The text was updated successfully, but these errors were encountered:
The documentation does not distinguish between static and instance methods, making pages like this confusing:
http://www.collectionsjs.com/object
For example, there are two clone methods:
Object.clone(object, depth, memo)
someCollection.clone(depth, memo)
Only the latter is shown on the documentation for Object. However, only the former is actually implemented for
Object
. The latter is only available on collections.Perhaps I'm mistaken? I'm just starting to read through the documentation to grok this library.
The text was updated successfully, but these errors were encountered: