@egjs/rotate
Version:
Tiny custom rotate event binder
19 lines (16 loc) • 442 B
JavaScript
/**
* Copyright (c) 2015 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
/* eslint-disable no-new-func, no-nested-ternary */
const win = typeof window !== "undefined" &&
window.Math === Math ? window : (
typeof self !== "undefined" && self.Math === Math ?
self : Function("return this")()
);
/* eslint-enable no-new-func, no-nested-ternary */
const document = win.document;
export {
win as window,
document
};