We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 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
"abacus" | |
"accordion" | |
"acorn" | |
"acrobat" | |
"adult" | |
"adult_cat" | |
"agriculture" | |
"aircraft" | |
"airplane" | |
"airport" |
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
{ | |
"theme": "dark", | |
"snippet": { | |
"expanded": true, | |
"newSnippetPrivate": true, | |
"sorting": "updated_at", | |
"sortingReverse": true | |
}, | |
"editor" : { | |
"tabSize": 4 |
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
export function compose(...funcs: Array<(...args: Array<any>) => any>) { | |
if (funcs.length === 0) { | |
return (arg: any) => arg; | |
} | |
if (funcs.length === 1) { | |
return funcs[0]; | |
} | |
const last = funcs[funcs.length - 1]; |