How to use:
./wordle.sh
Or try the unlimit mode:
function iconTemplate({ template }, opts, { imports, componentName, props, jsx }) { | |
const typeScriptTpl = template.smart({ plugins: ['typescript'] }); | |
return typeScriptTpl.ast` | |
${imports} | |
import styled, { css } from 'styled-components'; | |
const SvgIcon = (${props}: React.SVGProps<SVGSVGElement>) => (props => ${jsx})({className: props.className}); | |
const ${componentName} = styled(SvgIcon)([], | |
({ theme, fill, width }) => css\` |
const handler = { | |
get(target, propKey, receiver) { | |
if (/^_[0-9]+$/.test(propKey)) { | |
const result = []; | |
const first = Number(receiver); | |
const last = Number(propKey.slice(1)); | |
for (let i=first; i<=last; i++) { | |
result.push(i); | |
} | |
return result; |
Method | Description |
---|---|
auth.checkPhone | Sample Description |
auth.sendCode | Sample Description |
auth.signUp | Sample Description |
[Raster tiles][rt] | [Vector tiles][vt] | GeoJSON | virtual-dom | offline | map quality | React component | React Native | |
---|---|---|---|---|---|---|---|---|
google maps | + | + | good | [4 unsupported][gm-react] | [+][gm-native] | |||
leaflet * | + | [+][ll-vt] | + | [+/-][ll-offline] | depends | [+][ll-rect] | ||
d3 * | + | [+/-][d3-vdom] | +/- | depends | [+][d3-react] | |||
MapboxGL | + | + | depends | [+][mb-react] | [+][mb-native] | |||
Yandex Maps | + |
int doubler(int x) { | |
return 2 * x; | |
} |
This guide assumes you have the emmet
and language-babel
packages already installed in Atom
keymap.cson
file by clicking on Atom -> Keymap…
in the menu bar'atom-text-editor[data-grammar~="jsx"]:not([mini])':
#!/bin/bash | |
# | |
# Author: SuperPaintman <[email protected]> | |
# | |
### | |
# Constants | |
### | |
RETVAL=0 |