@sysdoc/sharepoint-util
Version:
A utility library for SharePoint solutions
12 lines (11 loc) • 704 B
TypeScript
export declare function capitalize(str: string): string;
export declare function lowerize(str: string): string;
export declare function removeSpaces(str: string): string;
export declare function parenthesize(str: string): string;
export declare function getPowershellValue(val: any): any;
export declare function getAttr(field: any, ...fieldNames: string[]): any;
export declare function hasAttr(field: any, ...fieldNames: string[]): boolean;
export declare function isString(val: any): boolean;
export declare function isObject(val: any): boolean;
export declare function hasItems(obj: any, ...fieldNames: string[]): boolean;
export declare function hasKeys(obj: any, ...fieldNames: string[]): boolean;