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
// Promise.all is good for executing many promises at once | |
Promise.all([ | |
promise1, | |
promise2 | |
]); | |
// Promise.resolve is good for wrapping synchronous code | |
Promise.resolve().then(function () { | |
if (somethingIsNotRight()) { | |
throw new Error("I will be rejected asynchronously!"); |
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
// ==Taberareloo== | |
// { | |
// "name" : "Update Tumblr's favicon 2015.06" | |
// , "description" : "Update Tumblr's favicon 2015.06" | |
// , "include" : ["background"] | |
// , "version" : "0.1.1" | |
// , "downloadURL" : "https://gist.githubusercontent.com/ailispaw/db3d9be7620e75e44045/raw/patch.update.tumble.favicon.tbrl.js" | |
// } | |
// ==/Taberareloo== |
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
// ==Taberareloo== | |
// { | |
// "name" : "Fix Tumblr.getTumblelogs 2021.12" | |
// , "description" : "Fix Tumblr.getTumblelogs 2021.12" | |
// , "include" : ["background"] | |
// , "version" : "0.5.2" | |
// , "downloadURL" : "https://gist.githubusercontent.com/ailispaw/3aef8857c274e22f2b41/raw/patch.fix.tumblr.getTumblelogs.tbrl.js" | |
// } | |
// ==/Taberareloo== |
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
// ==Taberareloo== | |
// { | |
// "name" : "Fix missing ctx.host" | |
// , "description" : "Fix missing ctx.host" | |
// , "include" : ["content"] | |
// , "match" : ["*://*/*"] | |
// , "version" : "0.1.1" | |
// , "downloadURL" : "https://gist.githubusercontent.com/ailispaw/2f15aeabf922afada020/raw/patch.fix.missing.ctx.host.tbrl.js" | |
// } | |
// ==/Taberareloo== |
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
node_modules/ |
Answer of ES6 Quiz
- 2
"func"
see: [9.2.12 SetFunctionName][9.2.12], [12.14.4 Runtime Semantics of AssignmentExpression][12.14.4]
#まず見るべき
以下のURLは、常に更新されているコンテンツです。
- ドキュメント日本語版
- 日本語版ドキュメントはVue.js日本語コミュニティによって常に更新されています。ミスがあれば、是非jp.vuejs.orgまでプルリクエストを頂けると助かります。
- 質問や議論は日本語コミュニティのSlackが活発です。
- はじめに読むものとしては、下記のコンテンツが良いでしょう。
- 概要
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
// ==UserScript== | |
// @name github:place-holder-textarea | |
// @namespace http://efcl.info/ | |
// @description place holder textare | |
// @include https://github.com/*/*/edit/*/* | |
// @include https://github.com/*/*/new/*/* | |
// @version 1 | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |