GithubHelp home page GithubHelp logo

pnxdxt / help-string Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 9 KB

Small js package I use to help me to dealing with strings

Home Page: https://www.npmjs.com/package/help-string

License: MIT License

JavaScript 95.89% TypeScript 4.11%
javascript npm-package utils

help-string's Introduction

help-string

Small js package I use to help me to dealing with strings

XO code style GitHub workflow status npm bundle size npm downloads

Install

$ npm install help-string

Import

This package is pure ESM. It cannot be require()'d from CommonJS.

Use import foo from 'foo' instead of const foo = require('foo') to import the package.

// Load entire build
import * as helpString from 'help-string';

// Load by method
import {sliceText} from 'help-string';

If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).

You also need to make sure you're on the latest minor version of Node.js. At minimum Node.js 12.20, 14.14, or 16.0.

Read more here: sindresorhus/esm-package

Usage

helpString.isMail('');
//=> false

helpString.isEmpty('')
//=> true

startsWith : Checks if string starts with the given target string.

endsWith : Checks if string ends with the given target string.

indexOf : Find the index of a given string inside another.

isEmpty : Check if given string is undefined, null, or zero length.

isImageUrl : Checks if value is a valid image url.

isMail : Checks if value is a valid mail.

isPhone : Checks if value is a valid phone number.

isUrl : Checks if value is a valid url.

random : Generates a random string.

repeat : Repeats the given string n times.

replace : Replaces matches for pattern in string with replacement.

sliceText : Split text and keep n many characters.

License

MIT © Paul Nodet

help-string's People

Contributors

pnodet avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.