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
var _Debug_log = F2(function(tag, value) | |
{ | |
console.log(tag + ': ' + _Debug_toString(value)); | |
return value; | |
}); |
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
import * as readline from "readline"; | |
const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); | |
const lower = new Date(process.argv[2] || "0000-01-01"); | |
const upper = new Date(process.argv[3] || "9999-12-31"); | |
const diff = upper - lower; | |
function randomDate() { | |
return new Date(lower.getTime() + Math.random() * diff); | |
} |
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
#!/usr/bin/env bash | |
# Example: | |
# | |
# 1. git clone [email protected]:elm/core.git | |
# 2. cd core | |
# 3. ./zip.bash 1.0.5 out.zip elm/core | |
# 4. Compare outputs of: | |
# - `unzip -l out.zip` and `unzip -l github-zipball.zip` | |
# - `wc -c out.zip` and `wc -c github-zipball.zip` |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"allowSyntheticDefaultImports": true, | |
"esModuleInterop": true, | |
"forceConsistentCasingInFileNames": true, | |
"isolatedModules": true, | |
"module": "CommonJS", | |
"moduleResolution": "node", | |
"noEmit": true, | |
"noFallthroughCasesInSwitch": true, |
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
import * as Decode from "tiny-decoders"; | |
import { ErrorTemplate, fancyError } from "./Errors"; | |
import { join, RESET_COLOR } from "./Helpers"; | |
import { NonEmptyArray } from "./NonEmptyArray"; | |
import { AbsolutePath, ElmJsonPath, OutputPath } from "./Types"; | |
// https://github.com/elm/compiler/blob/94715a520f499591ac6901c8c822bc87cd1af24f/compiler/src/Reporting/Doc.hs#L412-L431 | |
// Lowercase means “dull” and uppercase means “vivid”: | |
// https://github.com/elm/compiler/blob/94715a520f499591ac6901c8c822bc87cd1af24f/compiler/src/Reporting/Doc.hs#L369-L391 |
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
check = s => { let v = s.split("").map((c, i) => { let d = Number(c); let m = i % 2 === 0 ? d * 2 : d; return m > 9 ? m - 9 : m }).reduce((a, b) => a + b, 0); return (10 - (v % 10)) % 10} |
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
node_modules |
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
node_modules |
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
// 11 and 513 come from here: https://mathiasbynens.be/demo/sort-stability | |
function checkStable(length) { | |
return Array.apply(null, { length: length }) | |
.map(function (_, i) { | |
return i; | |
}) | |
.sort(function () { | |
return 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
bundle.js | |
node_modules |