30秒学会 JavaScript 片段 – isStream
作用:检查给定的参数是否是 stream。 实现思路:首先检查是否是 null,如果不是的话再使用 typeof 检查是否中 object,并且其属性 pipe 是否是 function 类型。
作用:检查给定的参数是否是 stream。 实现思路:首先检查是否是 null,如果不是的话再使用 typeof 检查是否中 object,并且其属性 pipe 是否是 function 类型。
绑定对象的函数里的 this 到对象本身。 使用 Array.prototype.forEach() 来遍历对象里所有指定的函数,使用 Function.prototype.apply() 来指定函数...
在指定范围中返回 n 个随机整数。 先用 make() 来创建相应大小的切片,使用 range 来遍历切片,用 rand.Intn() 来生成从 0 到 max – min 之间的随机数,...
从列表的尾部开始删除元素,直到传入的遍历函数返回 true,然后返回剩下的元素。 使用 List.lastIndexWhere() 来遍历执行 test 函数,以找到最后一个满足条件的元素。如果未找到...
Groups the elements into two arrays, depending on the provided function’s truthiness for each ...
Creates a function that invokes the provided function with its arguments arranged according to the s...
Curries a function. Use recursion. If the number of provided arguments (args) is sufficient, call th...
Converts a string to title case. Use String.replaceAllMapped() to break the string into words and ca...
A hook that handles the event of clicking outside of the wrapped component. Create a custom hook tha...
Uses an SVG shape to separate two different blocks to create more a interesting visual appearance co...