This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const padNum = require('padNum') | |
const formatTime = date => { | |
const year = date.getFullYear() | |
const month = date.getMonth() + 1 | |
const day = date.getDate() | |
const hour = date.getHours() | |
const minute = date.getMinutes() | |
const second = date.getSeconds() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var path = require("path"); | |
var fs = require("fs"); | |
var filePath = path.resolve(__dirname, '../../src/') // process.argv[2]; | |
var lookingForString = 'debugger' //process.argv[3]; | |
recursiveReadFile(filePath); | |
function recursiveReadFile (fileName) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://www.kancloud.cn/kancloud/promises-book/44249 | |
function sequenceTasks(tasks) { | |
function recordValue(results, value) { | |
results.push(value); | |
return results; | |
} | |
var pushValue = recordValue.bind(null, []); | |
return tasks.reduce(function (promise, task) { | |
return promise.then(task).then(pushValue); | |
}, Promise.resolve()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
registry=https://registry.npm.taobao.org/ | |
phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs/ | |
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ | |
electron_mirror=https://npm.taobao.org/mirrors/electron/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toCamel (s) { return s.replace(/-(\w)/g, (m, c) => c.toUpperCase()) } | |
function toKebab (s) { return s.replace(/([A-Z])(?=[^A-Z]+?)|([A-Z]+?)((?=[A-Z][^A-Z])|$)/g, (m, c, cc) => '-' + (c || cc||'').toLowerCase()) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function PubSub() { | |
return Object.assign(Object.create(_pubSubBase), { | |
_id: 0, | |
_subSignals: {}, | |
_subCallbacks: {} | |
}) | |
} | |
function bind(obj, fn) { | |
return function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
"html", | |
"vue" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
border-width: 0 0 1px | |
border-bottom-style: solid | |
border-bottom-color: #c8c7cc | |
/* :root.retina */ | |
border-image-source: url("data:image/svg+xml;charset=utf-8,<svg height='1' width='1' xmlns='http://www.w3.org/2000/svg'><rect height='.5' width='1' y='.5' fill='%23c8c7cc'/></svg>") | |
border-image-slice: 0 0 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let psdSize = 750; //设计稿宽度 | |
let RemRatio = 16; //REM 换算比值 | |
let baseFontSize = psdSize / RemRatio; // 基准字体大小,单位px | |
var templateFunction = function (data) { | |
var common = '.icon {display: inline-block;}'; | |
var perSprite = data.sprites.map(function (sprite) { | |
return '.imgN {background-image: url(I); width: Wpx; height: Hpx; background-position: Xpx Ypx; }' | |
.replace(/px/g, 'rem') | |
.replace('I', sprite.image) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var str = '' | |
var FP_CODE = 0x263f | |
var FS_CODE = 0X2648 | |
for (var i = 0; i < 9; i++) { str += String.fromCharCode( FP_CODE + i ) } // --> "☿♀♁♂♃♄♅♆♇" | |
for (i = 0; i < 12; i++) { str += String.fromCharCode( FS_CODE + i ) } // --> "☿♀♁♂♃♄♅♆♇♈♉♊♋♌♍♎♏♐♑♒♓" |