first commit

This commit is contained in:
2025-12-08 10:52:05 -05:00
commit 50737919fd
935 changed files with 782679 additions and 0 deletions

31
README.md Normal file
View File

@@ -0,0 +1,31 @@
# beenpad
It's like `leftpad`, but it appends the string "been" to the left.
## Installation
```bash
npm install beenpad
```
## Usage
```javascript
import { beenpad } from 'beenpad';
// Pad to length 7
console.log(beenpad('foo', 7));
// Output: "beenfoo"
// Pad to length 8
console.log(beenpad('foo', 8));
// Output: "beenbfoo"
// Pad to length 11
console.log(beenpad('foo', 11));
// Output: "beenbeenfoo"
```
## License
ISC