This file contains 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
!regional&!costume&!legendary&!shadow&!favorite&!xl trade&!pvp&!pvp push&!pvp push&!mythical&!pvp push+&!shiny&!ultra beasts&!4*&!unown&!exclusive&!spinda |
This file contains 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
// this is exported by "some-package" | |
export default function El({ as: Component = "div", ...props }) { | |
return <Component {...props} /> | |
} |
This file contains 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
function getQuestionPoints(number, highlight) { | |
var question = document.getElementsByClassName("content")[number - 1]; | |
var rightAnswer = question.getElementsByClassName("rightanswer")[0].innerText; | |
var answers = question.getElementsByClassName("answer")[0]; | |
var answerMap = {}; | |
for (var i = 0; i < answers.children.length; ++i) { | |
var child = answers.children[i]; |
This file contains 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
const store = { | |
model: { | |
data: undefined, | |
errors: [], | |
loading: false, | |
}, | |
actions: { | |
setLoading: (state, loading) => ({ | |
...state, | |
loading, |
This file contains 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
fetch(`https://bundlephobia.com/api/size?package=${packageName}`) | |
.then(res => res.json()) | |
.then(({ size, gzip }) => /* do something */) |
This file contains 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
const link = new HttpLink({ | |
uri: 'https://serve.onegraph.com/dynamic?app_id=' + APP_ID, | |
credentials: 'same-origin' | |
}) |
This file contains 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 { Component } from 'react' | |
import { createStore } from 'react-woodworm' | |
const FormStore = createStore({ | |
model: { | |
data: {}, | |
state: {}, | |
}, | |
actions: { | |
updateField: ({ state, data }, payload) => { |
This file contains 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
/* @flow */ | |
import { parse, generate } from 'bredon' | |
import { | |
isCSSValue, | |
isHexColor, | |
isDimension, | |
isFunction, | |
isInteger, | |
isIdentifier | |
} from 'bredon-types' |
This file contains 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
// before | |
const rule = ({ fontSize, color }) => ({ | |
fontSize: fontSize, | |
color: color, | |
backgroundColor: 'black', | |
lineHeight: 1.0, | |
':hover': { | |
color: 'red' | |
}, | |
'@media (min-width: 300px)' { |
NewerOlder