Browse Source

Remove instrinsics and utf16 imports from os/os_js

Damian Tarnawski 1 year ago
parent
commit
ae322739b5
1 changed files with 0 additions and 2 deletions
  1. 0 2
      core/os/os_js.odin

+ 0 - 2
core/os/os_js.odin

@@ -1,9 +1,7 @@
 //+build js
 //+build js
 package os
 package os
 
 
-import "base:intrinsics"
 import "base:runtime"
 import "base:runtime"
-import "core:unicode/utf16"
 
 
 is_path_separator :: proc(c: byte) -> bool {
 is_path_separator :: proc(c: byte) -> bool {
 	return c == '/' || c == '\\'
 	return c == '/' || c == '\\'