diff options
author | Schwarzkopf Balázs <schwarzkopfb@icloud.com> | 2020-08-27 11:00:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 11:00:38 +0200 |
commit | e1564f385c770ac37c550f7d9e164d6a846c191e (patch) | |
tree | 1fbf2e00012793b64f07c8085d6e4d006a139a3b /std/node/os.ts | |
parent | 7583fd0979ee35144c7df078d00aa2e78b510be9 (diff) |
fix(std/node): "events" and "util" modules (#7170)
Diffstat (limited to 'std/node/os.ts')
-rw-r--r-- | std/node/os.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/os.ts b/std/node/os.ts index c312ffe0c..6714f071c 100644 --- a/std/node/os.ts +++ b/std/node/os.ts @@ -19,7 +19,7 @@ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. import { notImplemented } from "./_utils.ts"; -import { validateIntegerRange } from "./util.ts"; +import { validateIntegerRange } from "./_utils.ts"; import { EOL as fsEOL } from "../fs/eol.ts"; import process from "./process.ts"; |