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
In a nut shell... it would be nice if instead of | |
@include media ($tablet) { | |
text-align: right; | |
} | |
@include media ($desktop) { | |
text-align: right; | |
} |
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
var BaseObject = { | |
create: function create() { | |
var instance = Object.create(this); | |
instance._construct.apply(instance, arguments); | |
return instance; | |
}, | |
extend: function extend(properties, propertyDescriptors) { | |
propertyDescriptors = propertyDescriptors || {}; |
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
var a = 1 | |
this.b = 2 | |
global.c = 3 | |
d = 4 | |
exports.e = 5 | |
console.log({a: {global:global.a, this:this.a, exports:exports.a, t:typeof a} | |
,b: {global:global.b, this:this.b, exports:exports.b, t:typeof b} | |
,c: {global:global.c, this:this.c, exports:exports.c, t:typeof c} | |
,d: {global:global.d, this:this.d, exports:exports.d, t:typeof d} |