tsrun 0.1.23

A TypeScript interpreter designed for embedding in applications
Documentation
//! Built-in function implementations for JavaScript standard library

pub mod array;
pub mod boolean;
#[cfg(feature = "console")]
pub mod console;
pub mod date;
pub mod error;
pub mod function;
pub mod generator;
pub mod global;
pub mod internal;
pub mod json;
pub mod map;
pub mod math;
pub mod number;
pub mod object;
pub mod promise;
pub mod proxy;
pub mod regexp;
pub mod set;
pub mod string;
pub mod symbol;

// Re-export public functions from enabled modules
pub use array::*;
pub use boolean::*;
#[cfg(feature = "console")]
#[allow(unused_imports)]
pub use console::*;
pub use date::*;
pub use error::*;
pub use function::*;
pub use generator::*;
pub use global::*;
pub use internal::*;
pub use json::*;
pub use map::*;
pub use math::*;
pub use number::*;
pub use object::*;
#[allow(unused_imports)]
pub use regexp::*;
pub use set::*;
pub use string::*;
pub use symbol::*;