Dojo é o local onde se treinam artes marciais japonesas.
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
| query ExampleQuery { | |
| owners { | |
| id | |
| name | |
| pets { | |
| __typename | |
| id | |
| name | |
| ... on Dog { |
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
| - text = "Start a project" | |
| button(style="--total="+text.split('').length) | |
| each letter, index in text.split('') | |
| span(style="--nth:"+index,data-letter=letter) !{letter} |
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
| # Auto detect text files and perform LF normalization | |
| * text=auto | |
| # Encoding & EOL | |
| * encoding=UTF-8 eol=lf | |
| # Whitespace | |
| * whitespace=indent-with-non-tab,trailing-space,space-before-tab,tabwidth=2 | |
| # Whitespace (exclusions) |
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 'dart:convert'; | |
| import 'package:flutter/material.dart'; | |
| class Config extends InheritedWidget { | |
| final Map<String, dynamic> config; | |
| final Widget child; | |
| Config({Key? key, required this.child, required this.config}) | |
| : super(key: key, child: child); |
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 fn from "./index"; | |
| import module from './module'; | |
| jest.mock("./module", () => { | |
| const mod = jest.requireActual('./module').default; | |
| const mocked = () => { | |
| const moduleInstance = mod(); | |
| mocked.lastMockedOnClick = jest.spyOn(moduleInstance, 'onClick'); |
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
| packageExtensions: | |
| "@typescript-eslint/parser@*": | |
| dependencies: | |
| typescript: "*" | |
| apollo-link@*: | |
| dependencies: | |
| graphql: "*" | |
| apollo-server-core@*: | |
| dependencies: | |
| graphql: "*" |
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
| const deasync = require('deasync') | |
| const svelte = require('svelte/compiler') | |
| const { stylus } = require('svelte-preprocess') | |
| module.exports.process = (src, filename) => { | |
| let result, error | |
| svelte | |
| .preprocess(src, [stylus()], { filename }) | |
| .then(({ code }) => | |
| svelte.compile(code, { |
NewerOlder