1.1.0 • Published 5 years ago

three-stupid-array-unique-func v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

three-stupid-array-uniquify-func

Just like the package name, there are three stupid array unqiuify functions.

usage

array uniquer:

const { setUniquer ,forEachUniquer, reduceUniquer } = require('three-stupid-array-uniquify-func')
const thisIsAnArray = [1, 1, 2, '1', 3, 4, '4', 3, 4, 2]

setUniquer(thisIsAnArray)
forEachUniquer(thisIsAnArray)
reduceUniquer(thisIsAnArray)
// All of them output the same array: [1, 2, '1', 3, 4, '4']
// <doge />

proAjax:

/**
 * An promisify ajax function
 * @param {String} baseUrl An url.
 * @param {Object} options Define request's method, data, headers, progress tag...(unfinish)
 * @return {Object} There are three functions to process the response data into text,json and blob.
 */
// I'm lazy...