refactor: import rollup

This commit is contained in:
harttle
2018-08-20 23:58:41 +08:00
parent 4ece4e208f
commit bc9d8f92af
82 changed files with 8589 additions and 3963 deletions
+19 -36
View File
@@ -5,11 +5,11 @@ const toStr = Object.prototype.toString
* @param {any} value The value to check.
* @return {Boolean} Returns true if value is a string, else false.
*/
function isString (value) {
export function isString (value) {
return toStr.call(value) === '[object String]'
}
function stringify (value) {
export function stringify (value) {
if (isNil(value)) {
return String(value)
}
@@ -23,7 +23,7 @@ function stringify (value) {
return value
}
let cache = []
const cache = []
return JSON.stringify(value, (key, value) => {
if (isObject(value)) {
if (cache.indexOf(value) !== -1) {
@@ -35,17 +35,17 @@ function stringify (value) {
})
}
function isNil (value) {
export function isNil (value) {
return value === null || value === undefined
}
function isArray (value) {
export function isArray (value) {
// be compatible with IE 8
return toStr.call(value) === '[object Array]'
}
function isError (value) {
let signature = Object.prototype.toString.call(value)
export function isError (value) {
const signature = Object.prototype.toString.call(value)
// [object XXXError]
return signature.substr(-6, 5) === 'Error' ||
(typeof value.message === 'string' && typeof value.name === 'string')
@@ -59,9 +59,9 @@ function isError (value) {
* @param {Function} iteratee The function invoked per iteration.
* @return {Object} Returns object.
*/
function forOwn (object, iteratee) {
export function forOwn (object, iteratee) {
object = object || {}
for (let k in object) {
for (const k in object) {
if (object.hasOwnProperty(k)) {
if (iteratee(object[k], k, object) === false) break
}
@@ -80,20 +80,20 @@ function forOwn (object, iteratee) {
* @param {...Object} sources The source objects.
* @return {Object} Returns object.
*/
function assign (object) {
export function assign (object) {
object = isObject(object) ? object : {}
let srcs = Array.prototype.slice.call(arguments, 1)
const srcs = Array.prototype.slice.call(arguments, 1)
srcs.forEach((src) => Object.assign(object, src))
return object
}
function last (arr) {
export function last (arr) {
return arr[arr.length - 1]
}
function uniq (arr) {
let u = {}
let a = []
export function uniq (arr) {
const u = {}
const a = []
for (let i = 0, l = arr.length; i < l; ++i) {
if (u.hasOwnProperty(arr[i])) {
continue
@@ -110,8 +110,8 @@ function uniq (arr) {
* @param {any} value The value to check.
* @return {Boolean} Returns true if value is an object, else false.
*/
function isObject (value) {
let type = typeof value
export function isObject (value) {
const type = typeof value
return value != null && (type === 'object' || type === 'function')
}
@@ -123,33 +123,16 @@ function isObject (value) {
* Note that ranges that stop before they start are considered to be zero-length instead of
* negative — if you'd like a negative range, use a negative step.
*/
function range (start, stop, step) {
export function range (start, stop, step) {
if (arguments.length === 1) {
stop = start
start = 0
}
step = step || 1
let arr = []
const arr = []
for (let i = start; i < stop; i += step) {
arr.push(i)
}
return arr
}
// lang
exports.isString = isString
exports.isObject = isObject
exports.isArray = isArray
exports.isNil = isNil
exports.isError = isError
// array
exports.range = range
exports.last = last
// object
exports.forOwn = forOwn
exports.assign = assign
exports.uniq = uniq
exports.stringify = stringify