This file contains hidden or 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
/** @param {number} n */ | |
function semaphore (n) { | |
const resolvers = [] | |
const pushToResolvers = resolve => { resolvers.push(resolve) } | |
/** @type {() => (Promise<void> | void)} */ | |
const acquire = () => { | |
if (--n < 0) { |
This file contains hidden or 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 identity = x => x | |
/** | |
* Creates a predicate function to check if a value is not seen before | |
* | |
* @param {function} [by = x=>x] | |
* @returns {function} predicate function | |
* | |
* @example | |
* |
This file contains hidden or 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
'use strict' | |
const objToStringMethod = Object.prototype.toString | |
const reRegExpChar = /[\\^$.*+?()[\]{}|]/g | |
const reUnescapedSpaces = /(?<!\\)\s+/g | |
const reHasSpace = /\s/ | |
const compact = raw => reHasSpace.test(raw) ? raw.replace(reUnescapedSpaces, '') : raw | |
const escape = val => String(val).replace(reRegExpChar, '\\$&') |
This file contains hidden or 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 timeout (ms, x) { | |
return new Promise((resolve, reject) => { | |
let timeoutId = setTimeout(() => { | |
timeoutId = null | |
reject('timeout') | |
}, ms) | |
const onSettle = () => { | |
if (timeoutId != null) { | |
clearTimeout(timeoutId) |