stringify-attributes
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

stringify-attributes

Turn an object into a string of HTML attributes

Install

npm install stringify-attributes

Usage

import stringifyAttributes from 'stringify-attributes';

stringifyAttributes({
	unicorn: '🦄',
	rainbow: true,
	number: 1,
	multiple: [
		'a',
		'b'
	]
});
//=> ' unicorn="🦄" rainbow number="1" multiple="a b"'

Note that the string is prepended with a space when there are attributes to simplify using it in a HTML tag.

Related

Package Sidebar

Install

npm i stringify-attributes

Weekly Downloads

23,067

Version

4.0.0

License

MIT

Unpacked Size

3.72 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus