Created
January 3, 2018 10:46
-
-
Save nchanged/e56e8c68b106b1a1f95dda36e5c3cec9 to your computer and use it in GitHub Desktop.
imports example
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 { checkPassword } from "fuse-ts-raw-package" | |
// that package contains "import" statement which | |
// is nicely handled (split) by FuseBox | |
async function testMe(){ | |
const result = await checkPassword("123456"); | |
console.log(result); | |
} | |
testMe(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment