Socket
Socket
Sign inDemoInstall

trim-php

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    trim-php

Strip whitespace (or other characters) of a string.


Version published
Maintainers
1
Install size
8.03 kB
Created

Readme

Source

trim-php

NPM version Downloads Build Status AppVeyor Build Status

Strip whitespace (or other characters) of a string.

Install

Via npm

npm install trim-php

Via Yarn

yarn add trim-php

Usage

Import Package in Node.js.

const trimPhp = require('trim-php').default;

Import Package in React.

import trimPhp from 'trim-php';

Examples

Strip whitespace (or other characters) from the beginning of a string

In V1
const trim = require('trim-php');
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With lTrim: ', trim.lTrim(str));
In V2
const trimPhp = require('trim-php').default;
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With lTrim: ', new trimPhp().lTrim(str));

Strip whitespace (or other characters) from the end of a string

In V1
const trim = require('trim-php');
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With rTrim: ', trim.rTrim(str));
In V2
const trimPhp = require('trim-php').default;
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With rTrim: ', new trimPhp().rTrim(str));

Strip whitespace (or other characters) from the beginning and end of a string

In V1
const trim = require('trim-php');
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trimPhp: ', trim.trimPhp(str));
In V2
const trimPhp = require('trim-php').default;
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trim: ', new trimPhp().trim(str));

Strip whitespace (or other characters) from the beginning and end of a string in React

In V1
import trim from 'trim-php';

var str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trimPhp: ', trim.trimPhp(str));
In V2
import trimPhp from 'trim-php';

const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trimPhp: ', new trimPhp().trim(str));

Parameters

AttributesTypeRequiredDescription
strStringYesSpecifies the string to check.
charListStringNoSpecifies which characters to remove from the string.

Return

Returns the modified string.

Tested

This package is tested with the Node.js and React Application.

Keywords

FAQs

Last updated on 31 Mar 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc