Merge branch 'master' into feature/remove-babel-polyfill

This commit is contained in:
shockey
2017-06-20 11:15:48 -07:00
committed by GitHub

View File

@@ -3,7 +3,7 @@
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
* When run outside of NodeJS, will return an error message
*/
const getAbsoluteFSPath = () => {
const getAbsoluteFSPath = function () {
// detect whether we are running in a browser or nodejs
if (typeof module !== "undefined" && module.exports) {
return require("path").resolve(__dirname)