github-pages-deploy-action/node_modules/@sinonjs/commons/lib/global.js

17 lines
307 B
JavaScript
Raw Normal View History

2020-01-28 13:08:03 +08:00
"use strict";
var globalObject;
/* istanbul ignore else */
if (typeof global !== "undefined") {
// Node
globalObject = global;
} else if (typeof window !== "undefined") {
// Browser
globalObject = window;
} else {
// WebWorker
globalObject = self;
}
module.exports = globalObject;