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
class ArrowWorklet { | |
static get contextOptions() { | |
return { alpha: true }; | |
} | |
static get inputProperties() { | |
return [ | |
'--arrow-bg-color', | |
'--arrow-outline-color', | |
'--arrow-length', |
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 multiTasking(schedule = setTimeout) { | |
const taskList = new Set(); | |
let isRunning = false; | |
let isScheduled = false; | |
const next = () => { | |
isScheduled = false; | |
taskList.forEach(task => { | |
if (!isRunning) { | |
return; |
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 combineAll = (function() { | |
/** | |
* Returns a `forEach`-function that either, when on a leaf, calls the callback, | |
* or calls `combine()` when on a branch. | |
* @param {Function} cb Callback | |
* @param {Array} arrays Array of arrays containing values to be combined. | |
* @param {Number} level Index in `arrays` the previous recursion is processing. | |
* @param {Array} pathValues Array containing values up to `level` | |
* @param {Array} pathIndices Array containing indices up to `level` | |
* @return {Function} Function to be supplied to `forEach` in `combine()`-functions. |
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 debounceAndThrottle(fn, timeout) { | |
var throttled = _.throttle(function() { | |
fn.apply(null, arguments); | |
}, timeout) | |
return _.debounce(function() { | |
throttled.apply(null, arguments); | |
}, timeout); | |
} | |
var fn = debounceAndThrottle((a, b) => { |
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
(() => { | |
['white', 'silver', 'gray', 'black', 'red', 'maroon', 'yellow', 'olive', 'lime', | |
'green', 'aqua', 'teal', 'blue', 'navy', 'fuchsia', 'purple' | |
].forEach(color => { | |
console[color] = (...args) => { | |
console.log(`%c${args.join(' ')}`, `color:${color}`) | |
} | |
console[`${color}B`] = (...args) => { | |
console.log(`%c${args.join(' ')}`, `color:${color};font-weight:bold`) | |
} |
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
class MPromise extends Promise { | |
constructor(executor) { | |
super((resolve, reject) => | |
executor((...args) => resolve(args), (...args) => reject(args)) | |
); | |
} | |
then(onFulfilled, onRejected) { | |
return super.then( | |
onFulfilled ? (args) => onFulfilled(...args) : undefined, |
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 step1(result) { | |
console.log('call step1'); | |
return new Promise(function(resolve, reject) { | |
console.log('resolve step1'); | |
result['step1'] = 'Step 1'; | |
return resolve(result); | |
}); | |
} | |
function step2(result) { |
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
// Sugar. | |
// Instead of | |
// | |
// Promise.all([2, calculateValB(3), calculateValC(4)]).then((result) => { | |
// var res = calculateResult(result[0], result[1], result[2]); | |
// /* process result */ | |
// }); | |
// | |
// write | |
// |
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 createScale(vals, iterations) { | |
var m = vals.length * iterations; | |
for (var n = 0; n < m; n++) { | |
var x = vals[n % vals.length] * Math.pow(10, Math.floor(n / vals.length)); | |
console.log(x); | |
} | |
} | |
createScale([1,2,5], 3); |
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
/**************************************************************************//** | |
* @file | |
* @brief SemVer.js: Semantic version implementation. | |
* @author Arne Seib <[email protected]> | |
* @copyright 2015 Arne Seib (http://www.seiberspace.de). | |
*****************************************************************************/ | |
SemVer = (function() { | |
//------------------------------------------------------------------------------ | |
// private function: validate `from[name]` with validator `type`. |
NewerOlder