Mickey Rose
Mickey Rose
Quoting from [Hack pipes might be simpler to use](https://github.com/tc39/proposal-pipeline-operator#hack-pipes-might-be-simpler-to-use) > For example, with Hack pipes, value |> someFunction + 1 is invalid syntax and will fail early. There is no...
### Description This is not a bug per se, but something worth fixing nonetheless. `@stdlib/string` depends on `@stdlib/datasets` (~150MB) only to use `@stdlib/datasets/stopwords-en` (
### Description Currently the function looks like this: ```js function isIteratorLike( value ) { return ( value !== null && typeof value === 'object' && // too narrow isFunction( value.next...
```js // x.js import minimist from "minimist" import mri from "mri" const OPTIONS = { boolean: [ 'flag' ], array: [ { key: '_', number: true } ] } console.log('minimist',...
Before af24915ba36c57ef7133023eb55148712a6023f1 the message was: ``` * Updating binary package linux-x86_64/gdal/2.4.1.tar.gz... curl: no URL specified! curl: try 'curl --help' or 'curl --manual' for more information * Binary package is still...
Is there a reason for that, or is it mere typo?
Follow-up to #692. I was still getting basename errors from `mason install boost ...` and `mason link boost ...`. The culprit was that I didn't set CC and CXX, and...
Forewarning: I'm not doing / testing anything with this `if [ "${MASON_PLATFORM}" = 'ios' ]` branch, so please someone double check these changes. I've just stumbled upon it while grepping...
Previously all kinds of functions were printed as `[Function: name]` This PR differentiates: `[AsyncFunction: name]` `[AsyncGeneratorFunction: name]` `[GeneratorFunction: name]` In the second commit I changed the `getObjectTag` helper function a...
This was motivated by a desire to experiment with new operators. The very first step in doing so — adding a token type for the new operator — is tedious....