typescript-dotnet-amd
Version:
A JavaScript-Friendly .NET Based TypeScript Library.
11 lines (10 loc) • 490 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* From Netjs mscorlib.ts
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
*/
export declare function isWhiteSpace(ch: number): boolean;
export declare function isLetter(ch: number): boolean;
export declare function isLetterOrDigit(ch: number): boolean;
export declare function isDigit(ch: number): boolean;
export declare function isDigit(str: string, index: number): boolean;