Skip to content

Instantly share code, notes, and snippets.

View jovey-zheng's full-sized avatar
🎯
Focusing

Jovey Zheng jovey-zheng

🎯
Focusing
View GitHub Profile
@jovey-zheng
jovey-zheng / syncApply.js
Created September 16, 2017 07:12
Sync apply function
syncApply ({timeout, fn, args = [], scope = this}) {
return new Promise((resolve, reject) => {
try {
setTimeout(() => {
resolve(fn.apply(scope, args))
}, timeout)
} catch (err) {
reject(err)
}
})
@jovey-zheng
jovey-zheng / sumBigNumber.js
Created May 5, 2019 03:03
Calculate the sum of large numbers.
/**
* @param a {String}
* @param b {String}
*/
function sumBigNumber(a, b) {
if (typeof a !== 'string' || typeof b !== 'string') {
throw new Error('param 'a' and 'b' must be string')
}
var res = '',
@jovey-zheng
jovey-zheng / flatten.js
Last active May 6, 2019 07:15
Flatten deep nested arrays.
// array flatten function
function flatten (arr) {
let result = [].slice.call(arguments)[1] || []
for (let i = 0; i < arr.length; i++) {
if (Array.isArray(arr[i])) {
flatten(arr[i], result)
} else {
result.push(arr[i])
}
@jovey-zheng
jovey-zheng / numtoCl.js
Created August 3, 2016 09:45
Transform Number to Chinese.
(function(global){
var numtoCL = {}
var Maxnumb = 9007199254740992;
numtoCL.toS = function(num,m){
var op = {
ch: '零一二三四五六七八九'
,ch_u: '个十百千万亿'
,other: '负点'
,toCL: this.toCL