Skip to content

Instantly share code, notes, and snippets.

View karlhorky's full-sized avatar

Karl Horky karlhorky

View GitHub Profile
@karlhorky
karlhorky / flow-Pick.js
Created August 21, 2018 11:13
Flow: Pick utility function to return a subset of keys of an object type
// Source: https://github.com/facebook/flow/issues/3367#issuecomment-414490844
// Flow Try: https://flow.org/try/#0C4TwDgpgBACglgYwNYB4DyAnOBzOA7ALijQCMArCBYAGigGkIQBnI0iqgPigF4oASNgFkAhmDgoAUFHqMm1KVBQMQHABRIiygJQ8ufAKIAbCAFsIeYABVwEdFlx5ayjhI4BuCRNCQolgAw8sIioAN5IfkQkAPZRxsJ4AL60YRFQ8SAJ7grSEghReEzAUAip-oEpRMAYAK4QCW5QAPSNUHhRUBAYGFEYnnkFRQgAjERlvBVQQ371TS2d3RhAA
// I've just came across with the need of defining an object type
// using a subset of another, or in other words, use some props
// definition of a certain object type and intersect this result
// (a reduced object type) with another set of props definitions
// to define a new type.
// I used to do this a lot with PropTypes using pick utility from
@karlhorky
karlhorky / flow-Omit.js
Last active March 18, 2020 17:12
Flow: Omit utility function to remove keys of an object type by using $Diff
// Source: https://github.com/facebook/flow/issues/3367#issuecomment-397933288
// We can replicate $Omit non dynamic functionality by doing the following:
type T0 = {
k0: string,
k1: number,
k2: boolean
};
@karlhorky
karlhorky / literalType.js
Created August 2, 2018 08:59
Flow Type: Literal Type Generic Type
// @flow
// Originally from https://github.com/facebook/flow/issues/2639#issuecomment-409803679
const foo = 'FOO';
function literal(type) {
return { [type]: type };
}
@karlhorky
karlhorky / check-flow-types-without-pragma.md
Created July 31, 2018 09:38
Check Flow types without @flow pragma comment

Originally from: facebook/flow#284 (comment)

I use following solution which work great:

  1. .flowconfig file is placed to src folder.
  2. node_modules and flow-typed folders resides in root folder.
  3. Option all=true is enabled in .flowconfig file.
  4. flow-typed typings is included in .flowconfig file.
  5. Well-typed modules from node_modules folder that contain module own typings is included to .flowconfig file manually.
@karlhorky
karlhorky / predicate-function-checks-using-flow.js
Last active July 10, 2018 12:34
Predicate Function Checks Using Flow
// Interactive demo on Try Flow: https://flow.org/try/#0PTAEGEHsFsAcEMBOBTUAXAFgSwM4DoCAoAE2QGMAbJVAMwFcA7MtLSB0XAZTUSwYHNQACgBu8CnWQAuUDh59+AShk9JAbhLkqKUPSYs2HHN14DhYidNDwGAT2W7xOZBsJ7mrdl3lmh8RaAA3oSgoChodIjsaLawyJA01qAAvKmgAORypvzpGgC+hIQgoJxYcBSoZPDOOKAA7pCIANaEQt7ZQunw6Q6qyIoabcY+-EIAjA40Tv2uxQCyjZUwsBUAHqBVNaDEbOlo9Y1NUpqU1KBiiNYyAPxZCoPtCn6T0wOgxQCiiIiNwnxkjRQzEUhWKBDw8H48D4cnQ2BwxyKYAAQsg0GhkJcYnEyBhyE0FKA6DhCQBSXH4nBI0AAJWQNBkGHRsARIBoFEgdTwjX4wGQDGAOzIOGA2OQIvcBgYIoAxGhIGQALSwFDELBVDGKyWeKnawyPAQAJmeMnJeLITVqwVC4Ui0Vi8US8BSaUyI1yhAKbkYHkMAKY8DQfhudwEABpQAAjEMjByhwTWjiJIYmBTG-ygABkmaMqaNQkjigCiZtaLtSQA1FGNKECqWIlEMh68kA
// More information in this GitHub Issue: https://github.com/facebook/flow/issues/34
// Compare this...
declare function isString (value: string): true;
declare function isString (value: any): false;
function isString (a) {
return typeof a === 'string';
}
@karlhorky
karlhorky / colors.js
Last active July 10, 2018 12:29
How to create Enum module in Flow around version 0.72.0
// From https://github.com/facebook/flow/issues/627#issuecomment-389668600
// Pay special attention to:
// 1. We are casting each value to its own, as otherwise all of them would be strings
// 2. Freezing would be strictly required if we weren't casting each value to its
// own (1), but as we are, its becomes optional here from the flow point of view
const all = Object.freeze({
green: ("COLOR_GREEN": "COLOR_GREEN"),
red: ("COLOR_RED": "COLOR_RED"),
yellow: ("COLOR_YELLOW": "COLOR_YELLOW"),
@karlhorky
karlhorky / .yarnrc
Last active December 15, 2024 11:21
Configure Yarn's --silent flag with .yarnrc configuration file
--silent true
@karlhorky
karlhorky / package.json
Last active April 12, 2018 15:03
Yarn: Set options conditionally based on value of positional argument
{
"scripts": {
"cli": "bash -c 'node -r @babel/register src/cli.js $1 $([[ $1 =~ login|logout ]] && echo \"--identity ../local-dev/cli_id_rsa\" || echo \"\")' -- "
}
}
@karlhorky
karlhorky / 1.js
Last active April 6, 2018 05:25
Asynchronous Configuration in Node.js
import {setPath} from './2';
(async () => {
await setPath();
// Could also do dynamic import() here with https://github.com/airbnb/babel-plugin-dynamic-import-node
require('./3');
})();
@karlhorky
karlhorky / in-browser-notepad
Last active February 23, 2018 10:17
In-browser notepad URL
# Enter this in the browser address bar to get a simple page where text can be added:
data:text/html,<html contenteditable>