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
// you must install the 3 modules for this to work | |
// npm install bluebird q when | |
// so the gist here, no pun intended, is that when you're testing for a Promise, it's totally fine | |
// to either check if the object is instanceof Promise or even if Promise.resolve(object) == object | |
// UNLESS there is a chance that this promise is returned from a third party promise library, or even | |
// if you have plugins or some other modules using your module, | |
// ... so, if you don't know which "Promise" constructor could be getting, |
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
/* | |
// from bootstrap/scss/_variables.scss | |
$grid-breakpoints: ( | |
xs: 0, | |
sm: 576px, | |
md: 768px, | |
lg: 992px, | |
xl: 1200px | |
) !default; |
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
(function () { | |
// By joseph khoury | |
let context = new AudioContext(); | |
let sound = context.createOscillator(); | |
sound.type = "sine"; | |
sound.connect(context.destination); | |
sound.frequency.value = 200; | |
sound.start(); | |
let ison = true; |
OlderNewer