How to use the js function from immutable
Find comprehensive JavaScript immutable.js code examples handpicked from public code repositorys.
182 183 184 185 186 187 188 189 190 191
* * @param {string|Array.<string>} [path] - defaults to empty string. Can be array for path. See Immutable.js Cursors * * @api public * @module structure.cursor * @returns {Cursor} Gives a Cursor from Immutable.js */ Structure.prototype.cursor = function (path) { var self = this; path = valToKeyPath(path) || [];
21
374
0
immutable.Map is the most popular function in immutable (1575 examples)