yaml-ast-parser-custom-tags
Version:
This is a custom maintained fork specifically for the YAML Language server.
7 lines (6 loc) • 360 B
TypeScript
export declare function isNothing(subject: any): boolean;
export declare function isObject(subject: any): boolean;
export declare function toArray(sequence: any): any[];
export declare function extend(target: any, source: any): any;
export declare function repeat(string: any, count: any): string;
export declare function isNegativeZero(number: any): boolean;