How to use the identical function from ramda
Find comprehensive JavaScript ramda.identical code examples handpicked from public code repositorys.
2320 2321 2322 2323 2324 2325 2326 2327 2328 2329
* @param {*} b * @return {Boolean} * @example * * var o = {}; * R.identical(o, o); //=> true * R.identical(1, 1); //=> true * R.identical(1, '1'); //=> false * R.identical([], []); //=> false * R.identical(0, -0); //=> false
0
0
0
+ 107 other calls in file
ramda.clone is the most popular function in ramda (30311 examples)