UNPKG

@ngageoint/geopackage

Version:
18 lines (17 loc) 378 B
/** * String Utility methods */ export declare class StringUtils { /** * Wrap the name in double quotes * @param name name * @return quoted name */ static quoteWrap(name: string): string; /** * Remove double quotes from the name * @param name name * @return unquoted name */ static quoteUnwrap(name: string): string; }