UNPKG

cntstr

Version:

A utility to count the number of characters in a given string

8 lines (7 loc) 187 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.countStr = void 0; const countStr = (str) => { return str.length; }; exports.countStr = countStr;