github地址:https://github.com/ABCDdouyae... kind-of 判断数据类型用法:kind-of(date)返回:string 数据类型 January undefined null boolean string number function array regexp date arguments error buffer set weakset map weakmap symbol init8array unit8array uint8clampedarr…
[github地址:https://github.com/ABCDdouyae...] pad 给字符串的左右加padding,也可以用于删减字符串两端 用法:pad(str, length, options)|pad(length, str, options) options: char (string): 指定字符填充 colors (boolean):Ajust to hidden terminal color characters, you may also use require 'p…
[github地址:https://github.com/ABCDdouyae...] gradient-string 用于在终端打印出好看的渐变文字 普通用法 console.log(gradient('cyan', 'pink')('Hello world!')); let a = 'so beautiful!' let b = gradient('red', 'green'); console.log(b(a)); let c = gradient(['yellow', 'orange']…
一.bindme 官方定义: is a helper to bind a list of methods to an object reference 理解: 因为不推荐在render()里构建函数,作者就用了6行代码封装了函数绑定事件的代码. bindme的npm包实际上由6行ES5代码组成,但是确实方便了很多.这个包值得一用 二.用法 代替箭头函数和多层bind 有时候我们并不会直接在创建事件的时候bind,而是统一在constructor上绑定事件,如果一个模块大起来,就会出现好几十行绑定…
一.react-dropzone 官方定义: Simple HTML5-compliant drag'n'drop zone for files built with React.js. 理解: 一个为react量身定制,基于H5 API:drop && drag可以实现拖拽上传文件的npm插件包 是的,以后再也不用自己苦苦地封装drop和drag了, react-dropzone使用非常简单,只需要调用一个事件. 当然这个包是针对于react的(直接作为组件使用),如果需要非组件的,直接…
package Nov2016.use01; class Test { public String getString(){ return "123"; } } package Nov2016; import Nov2016.use01.Test; public class Ques1121 { public static void main(String[] args) { Test test = new Test(); System.out.println(test.getStri…