Files
DefinitelyTyped/left-pad/left-pad-tests.ts
2016-11-29 10:16:14 +01:00

15 lines
250 B
TypeScript

import leftPad = require("left-pad");
// Tests based on examples in https://github.com/stevemao/left-pad#usage
leftPad("foo", 5);
// => " foo"
leftPad("foobar", 6);
// => "foobar"'
leftPad(1, 2, "0");
// => "01"
leftPad(17, 5, 0);
// => "00017"