Let's switch from import back to require, to simplify future Node support

This commit is contained in:
Jeff Parsons 2016-12-27 17:16:18 -08:00 committed by Jeff Parsons
commit 5e2073f3ac
37 changed files with 179 additions and 166 deletions

View file

@ -28,8 +28,8 @@
"use strict";
import Str from "../../shared/es6/strlib";
import Component from "../../shared/es6/component";
var Str = require("../../shared/es6/strlib");
var Component = require("../../shared/es6/component");
/**
* Debugger Address Object
@ -674,4 +674,4 @@ if (DEBUGGER) {
} // endif DEBUGGER
export default Debugger;
module.exports = Debugger;