exports most html entities.
npm install @magic/entities
@magic/entities export an array of entities.
each entity is an array of the form [numId, symbol, stringId, info]
import { entities } from '@magic/entities'
// entities is an array filled with arrays:
const item = entities[4]
const [numId, symbol, stringId, info] = item
// not all entities have a stringId or a symbol.
isEntity can test if a string is a valid entity.
isEntity also tests if the string exists in the entities list.
import { isEntity } from '@magic/entities'
isEntity(''') // true
isEntity(39) // false
entityFromId can be passed a string or number.
wraps string in & and ;
wraps numbers in &# and ;
import { entityFromId } from '@magic/entities'
entityFromId(39) // '''
entityFromId('lt') // '&#lt;'
first commit
add quot for quotation marks. #quot; is a thing...
bump required node version to 14.2.0
update @magic/types
- bump required node version to 14.15.4
- update dependencies
update dependencies update @magic/test devdependency
update dependencies
update dependencies
update dependencies
update dependencies
update dependencies
update dependencies
...