New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

complete-string

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

complete-string

🔨 Complete string by any char

  • 3.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-63.64%
Maintainers
0
Weekly downloads
 
Created
Source

complete-string

node version npm version downloads count size license github-ci

🔨 Complete string by any char.

WARNING: This repo is shim for String.prototype.padStart (defined in ES2017 spec).

Usage

Installation:

npm install complete-string
// CommonJS
const CompleteString = require('complete-string');

// or ES Modules
import * as CompleteString from 'complete-string';

CompleteString.withChar(' batman', 10, 'a') // => 'aaa batman'
CompleteString.withZero('5', 2) // => '05'
// or import particular functions
import { withChar, withZero } from "complete-string";

withChar(' zorro', 10, 'z') // => 'zzzz zorro'
withZero('6', 2) // => '06'

License

The MIT License @ 2014

Keywords

FAQs

Package last updated on 20 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc