All Projects → sindresorhus → To Single Quotes

sindresorhus / To Single Quotes

Licence: mit
Convert matching double-quotes to single-quotes: `I "love" unicorns` → `I 'love' unicorns`

Programming Languages

javascript
184084 projects - #8 most used programming language

to-single-quotes Build Status

Convert matching double-quotes to single-quotes: I "love" unicornsI 'love' unicorns

Install

$ npm install --save to-single-quotes

Usage

const toSingleQuotes = require('to-single-quotes');

toSingleQuotes('I love "unicorns" \'and\' "ponies"');
//=> "I love 'unicorns' 'and' 'ponies'"

Related

License

MIT © Sindre Sorhus

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].