1.1.0 • Published 3 years ago

saber-editor v1.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
3 years ago

allsaber

JavaScript's functional library

Installation

Using npm:

npm i allsaberjs --save

Usage

In Node.js:

// Load the full functions
var _ = require('allsaberjs');

// es6 module
import { test } from 'allsaberjs'
console.warn('test:', test, test())  // 调用成功

// AMD引用
require(['allsaber'], function(module){
  console.log('res:', module.test())  // 调用成功
})