All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
module.exports = checkQuote
|
|
|
|
function checkQuote(context) {
|
|
var marker = context.options.quote || '"'
|
|
|
|
if (marker !== '"' && marker !== "'") {
|
|
throw new Error(
|
|
'Cannot serialize title with `' +
|
|
marker +
|
|
'` for `options.quote`, expected `"`, or `\'`'
|
|
)
|
|
}
|
|
|
|
return marker
|
|
}
|