摘要: const notShorter = (o, minLen) => { if (o.length < minLen) { return false } return true } const notLonger = (o, maxLen) => { if (o.length > maxLen) { 阅读全文
posted @ 2018-09-10 23:44 papering 阅读(216) 评论(0) 推荐(0) 编辑
摘要: const delAllNonPrintableCharacter = (str) => { const r = str.replace(/\s/g, '') return { isEmpty: r.length === 0, str: r } } 阅读全文
posted @ 2018-09-10 21:44 papering 阅读(229) 评论(0) 推荐(0) 编辑
摘要: eval is not a function 阅读全文
posted @ 2018-09-10 21:26 papering 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: for (const k in v){ const a=[11,22,33,44]for(let i in a ){console.log(i)i=i+1}console.log(' ')for(const i in a ){console.log(i)i=i+1} VM64:3 0VM64:3 1 阅读全文
posted @ 2018-09-10 21:26 papering 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 爬虫站点的历史入库数据,对入库数据的无外网处理,幂等操作;反之,不幂等操作 阅读全文
posted @ 2018-09-10 10:30 papering 阅读(227) 评论(0) 推荐(0) 编辑
摘要: vdso(7) - Linux manual page http://man7.org/linux/man-pages/man7/vdso.7.html NAME | SYNOPSIS | DESCRIPTION | NOTES | ARCHITECTURE-SPECIFIC NOTES | SEE 阅读全文
posted @ 2018-09-10 09:38 papering 阅读(275) 评论(0) 推荐(0) 编辑