@drewbot/sass-flexbox-grid
Version:
A responsive sass grid library built with flexbox
17 lines (15 loc) • 458 B
JavaScript
var mainObj = {
owner: 'Drew Botka',
githubUrl: `https://github.com/drewbot`,
currentYear: new Date().getFullYear(),
isTouchDevice() {
return !!('ontouchstart' in window) || !!('msmaxtouchpoints' in window.navigator);
},
getCopyright() {
return `© ${this.currentYear} ${this.owner}. All Rights Reserved.`
},
getOwnerContent() {
return `Made by <a href="${this.githubUrl}">${this.owner}</a>`
}
};
module.exports = mainObj;