module Opal

def self.reset_paths!

Resets Opal.paths to the default value (includes `corelib`, `stdlib`, `opal/lib`)
def self.reset_paths!
  @paths = [core_dir.untaint, std_dir.untaint, gem_dir.untaint]
  nil
end