@coolgk/string
Version:
string utility functions
20 lines (18 loc) • 674 B
TypeScript
/*!
* @package @coolgk/utils
* @version 3.1.4
* @link https://github.com/coolgk/node-utils
* @license MIT
* @author Daniel Gong <daniel.k.gong@gmail.com>
*
* Copyright (c) 2017 Daniel Gong <daniel.k.gong@gmail.com>. All rights reserved.
* Licensed under the MIT License.
*/
/*!
* Copyright (c) 2017 Daniel Gong <daniel.k.gong@gmail.com>. All rights reserved.
* Licensed under the MIT License.
*/
export declare function stripTags(value?: string): string;
export declare function escapeHtml(value?: string): string;
export declare function unescapeHtml(value?: string): string;
export declare function prepad0(value: number | string, length?: number): string;