Name parser
npm install @citation-js/name``js`
npm install @citation-js/name
`js
let {parse, format} = require('@citation-js/name')
parse('First Last')
// { given: 'First', family: 'Last' }
format({ given: 'First', family: 'Last' })
// 'First Last'
`
parse(String name) -> Object
* String name: Any name
format(Object name[, Boolean reversed]) -> String
* Object name: Any nameBoolean reversed
* : Format as Last, First instead of First Last
---
Here, Object (CSL-JSON author format) has the following properties:
* givenfamily
* suffix
* dropping-particle
* non-dropping-particle`
*