Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
'use strict'
|
|
|
|
const invalidJSON = function() {
|
|
return [200, '{{{{{invalid json}}', { 'Content-Type': 'application/json' }]
|
|
}
|
|
|
|
module.exports = {
|
|
invalidJSON,
|
|
}
|