MCPcopy
hub / github.com/skygragon/leetcode-cli / len

Function len

lib/sprintf.js:3–7  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

1'use strict'
2
3function len(s) {
4 let s1 = s.replace(/\u001b\[[^m]*m/g, ''); // remove color controls
5 s1 = s1.replace(/[^\x00-\xff]/g, ' '); // fix non-ascii
6 return s1.length;
7}
8
9function padLeft(s, n, c) {
10 let k = Math.max(0, n - len(s));

Callers 3

padLeftFunction · 0.85
padRightFunction · 0.85
padCenterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected