-
-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1048 from asciidwango/publish1
Publish1
- Loading branch information
Showing
9 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// myModuleとしてデフォルトインポートし、 | ||
// fooを名前付きインポートする | ||
// fooを名前つきインポートする | ||
import myModule, { foo } from "./my-module.js"; | ||
console.log(foo); // => "foo" | ||
console.log(myModule); // => { baz: "baz" } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
const internalFoo = "foo"; | ||
// internalFoo変数をfooとして名前付きエクスポートする | ||
// internalFoo変数をfooとして名前つきエクスポートする | ||
export { internalFoo as foo }; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// 宣言と同時に名前付きエクスポートする | ||
// 宣言と同時に名前つきエクスポートする | ||
export function bar() { }; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
const foo = "foo"; | ||
// 宣言済みのオブジェクトを名前付きエクスポートする | ||
// 宣言済みのオブジェクトを名前つきエクスポートする | ||
export { foo }; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// fooとして名前付きエクスポートされた変数をmyFooとしてインポートする | ||
// fooとして名前つきエクスポートされた変数をmyFooとしてインポートする | ||
import { foo as myFoo } from "./named-export-alias.js"; | ||
console.log(myFoo); // => "foo" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// 名前付きエクスポートされたfooとbarをインポートする | ||
// 名前つきエクスポートされたfooとbarをインポートする | ||
import { foo, bar } from "./my-module.js"; | ||
console.log(foo); // => "foo" | ||
console.log(bar); // => "bar" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// すべての名前付きエクスポートをmyModuleオブジェクトとしてまとめてインポートする | ||
// すべての名前つきエクスポートをmyModuleオブジェクトとしてまとめてインポートする | ||
import * as myModule from "./my-module.js"; | ||
// fooとして名前付きエクスポートされた値にアクセスする | ||
// fooとして名前つきエクスポートされた値にアクセスする | ||
console.log(myModule.foo); // => "foo" | ||
// defaultとしてデフォルトエクスポートされた値にアクセスする | ||
console.log(myModule.default); // => { baz: "baz" } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
// ./my-module.jsのすべての名前付きエクスポートを再エクスポートする | ||
// ./my-module.jsのすべての名前つきエクスポートを再エクスポートする | ||
export * from "./my-module.js"; | ||
// ./my-module.jsの名前付きエクスポートを選んで再エクスポートする | ||
// ./my-module.jsの名前つきエクスポートを選んで再エクスポートする | ||
export { foo, bar } from "./my-module.js"; | ||
// ./my-module.jsの名前付きエクスポートにエイリアスをつけて再エクスポートする | ||
// ./my-module.jsの名前つきエクスポートにエイリアスをつけて再エクスポートする | ||
export { foo as myModuleFoo, bar as myModuleBar } from "./my-module.js"; | ||
// ./my-module.jsのデフォルトエクスポートをデフォルトエクスポートとして再エクスポートする | ||
export { default } from "./my-module.js"; | ||
// ./my-module.jsのデフォルトエクスポートを名前付きエクスポートとして再エクスポートする | ||
// ./my-module.jsのデフォルトエクスポートを名前つきエクスポートとして再エクスポートする | ||
export { default as myModuleDefault } from "./my-module.js"; | ||
// ./my-module.jsの名前付きエクスポートをデフォルトエクスポートとして再エクスポートする | ||
// ./my-module.jsの名前つきエクスポートをデフォルトエクスポートとして再エクスポートする | ||
export { foo as default } from "./my-module.js"; |