libuv/libuv#1565 https://gist.github.com/thlorenz/8dd5d3a50ee14457afce https://stackoverflow.com/questions/37934388/clang-symbol-visibility-not-working-as-expected https://github.com/libuv/libuv/search?q=uv_backend_fd&type=Code&utf8=%E2%9C%93 https://github.com/libuv/libuv/search?q=uv_backend_fd&type=Issues&utf8=%E2%9C%93 https://github.com/libuv/libuv/pull/1651/files libuv/libuv#1544 libuv/libuv#1568 libuv/libuv#434 libuv/libuv#1007
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
dd |
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
#define NUL 0x0 | |
#define SOH 0x1 | |
#define STX 0x2 | |
#define ETX 0x3 | |
#define EOT 0x4 | |
#define ENQ 0x5 | |
#define ACK 0x6 | |
#define BEL[a] 0x7 | |
#define BS 0x8 | |
#define HT 0x9 |
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
#!/bin/sh | |
upgrade=$1 | |
COLOR_RED='\e[0;31m' | |
COLOR_NC='\e[0m' # No Color | |
case $upgrade in | |
mi*) ver=minor;; | |
ma*) ver=major;; | |
pa*) ver=patch;; | |
*) echo 'Usage: pub [kind]'; exit 2;; |
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
npm test | |
git add . | |
git commit -m “js files” | |
git push |
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
“ava”: { | |
"require”: [ | |
“@std/esm” | |
] | |
}, | |
“@std/esm”: { | |
“esm”: “js”, | |
“cjs”: true | |
}, |
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
npm i -S @std/esm |
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
npm test |
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
“scripts”: { | |
“test”: “ava && xo” | |
}, |
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
import test from 'ava'; | |
import fetchDependenciesAuthors from '.'; | |
test('it export a function', t => { | |
t.is('function', typeof fetchDependenciesAuthors); | |
}); |
NewerOlder