home.nix や configuration.nix で importして使います。
imports = [
./modules/volta.nix
]
home.nix や configuration.nix で importして使います。
imports = [
./modules/volta.nix
]
| function isLeapYear(year) { | |
| if (year % 400 === 0) { | |
| return true; | |
| } | |
| if (year % 100 === 0) { | |
| return false; | |
| } | |
| if (year % 4 === 0) { | |
| return true; | |
| } |
| { | |
| "plugins": [["@babel/plugin-proposal-decorators", { "version": "2021-12" }]] | |
| } |
| <?php | |
| namespace RadioControllerCar; | |
| /* ラジコンの抽象クラス */ | |
| interface CarInterface | |
| { | |
| public function send($message); | |
| } |
| function sleep(n) { | |
| return new Promise(resolve => setTimeout(resolve, n)); | |
| } | |
| (async () => { | |
| console.log(Date.now()); | |
| await sleep(1000); | |
| console.log(Date.now()); | |
| })(); |
| const { series, src, dest } = require('gulp'); | |
| const debug = require('gulp-debug'); | |
| function hoge1 () { | |
| return src('src') | |
| .pipe(debug({title: 'hoge1'})) | |
| .pipe(dest('hoge')); | |
| } | |
| function hoge2 () { | |
| return src('src') |
| const { parseSchema } = require('json-schema-to-flow-type') | |
| const schema = require('./opeanapi.json') | |
| const flow = parseSchema(schema, {'http://json-schema.org/draft-04/schema': 'scheama.json'}) | |
| console.log(`// @flow\n\n${flow}`) |
| openapi: 3.0.0 | |
| servers: | |
| - url: 'https://api.chatwork.com/v2' | |
| info: | |
| title: ChatWork API | |
| version: "v2-oas3" | |
| paths: | |
| /contacts: | |
| get: | |
| responses: |