Created
March 31, 2020 13:07
-
-
Save selcukcihan/4c6e6964ce16992c24f07ec1c7fff867 to your computer and use it in GitHub Desktop.
Native modül, default export'lu örnek
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 sleep from './utils.js' | |
console.log(`3000 milisaniye uyuyalım `); | |
sleep(3000); |
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
{ | |
"name": "moduller", | |
"type": "module" | |
} |
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 DEFAULT_SLEEP_MILLISECONDS = 1000; | |
function sleep(milliseconds) { | |
return new Promise(resolve => | |
setTimeout(resolve, milliseconds || DEFAULT_SLEEP_MILLISECONDS) | |
); | |
} | |
export default sleep; | |
export { DEFAULT_SLEEP_MILLISECONDS, sleep }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment