uppercase | lowercase |
---|---|
Ä | ä |
Ö | ö |
Ü | ü |
ẞ | ß |
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 { linkEvent } from 'inferno'; | |
import { | |
compose, | |
withState | |
} from 'incompose'; | |
import classnames from 'classnames'; | |
const toggle = (props) => props.toggle(!props.hidden); | |
const ExpandableBlock = (props) => { |
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 R from 'ramda'; | |
const payloadSizeWithinLimit = (payload, limit) => limit > payload.size; | |
const errorState = { name: 'can not be empty' }; | |
const sizeInBytes = 50000; | |
let errorObj; | |
errorObj = R.cond([ | |
[R.equals(true), R.always({})], |
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
/* | |
Access the global variable document | |
*/ | |
const browserUrlParser1 = (url) => { | |
const p = document.createElement('a'); | |
p.href = url; | |
return p; | |
} | |
/* |
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
// https://codurance.com/2017/11/16/katas-for-functional-calisthenics/ | |
// Rules: https://codurance.com/2017/10/12/functional-calisthenics/ | |
// Thoughs | |
// - build a field ??? | |
// initial position | |
// new position function | |
// - parse moving string | |
// Pairing Session: @FQ400 @oleks-fedotov |