linting.
This commit is contained in:
parent
9ae53caa4d
commit
6fd080269b
|
@ -10,13 +10,15 @@ const dayjs = require("dayjs")
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function isOptions(val) {
|
function isOptions(val) {
|
||||||
return typeof(val) === "object" && typeof(val.hash) === "object"
|
return typeof val === "object" && typeof val.hash === "object"
|
||||||
}
|
}
|
||||||
|
|
||||||
function isApp(thisArg) {
|
function isApp(thisArg) {
|
||||||
return typeof(thisArg) === "object"
|
return (
|
||||||
&& typeof(thisArg.options) === "object"
|
typeof thisArg === "object" &&
|
||||||
&& typeof(thisArg.app) === "object"
|
typeof thisArg.options === "object" &&
|
||||||
|
typeof thisArg.app === "object"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getContext(thisArg, locals, options) {
|
function getContext(thisArg, locals, options) {
|
||||||
|
|
|
@ -2,7 +2,11 @@ const handlebars = require("handlebars")
|
||||||
const { registerAll } = require("./helpers/index")
|
const { registerAll } = require("./helpers/index")
|
||||||
const processors = require("./processors")
|
const processors = require("./processors")
|
||||||
const { cloneDeep } = require("lodash/fp")
|
const { cloneDeep } = require("lodash/fp")
|
||||||
const { removeNull, addConstants, removeHandlebarsStatements } = require("./utilities")
|
const {
|
||||||
|
removeNull,
|
||||||
|
addConstants,
|
||||||
|
removeHandlebarsStatements,
|
||||||
|
} = require("./utilities")
|
||||||
const manifest = require("../manifest.json")
|
const manifest = require("../manifest.json")
|
||||||
|
|
||||||
const hbsInstance = handlebars.create()
|
const hbsInstance = handlebars.create()
|
||||||
|
@ -121,7 +125,13 @@ module.exports.makePropSafe = property => {
|
||||||
* @returns {boolean} Whether or not the input string is valid.
|
* @returns {boolean} Whether or not the input string is valid.
|
||||||
*/
|
*/
|
||||||
module.exports.isValid = string => {
|
module.exports.isValid = string => {
|
||||||
const validCases = ["string", "number", "object", "array", "cannot read property"]
|
const validCases = [
|
||||||
|
"string",
|
||||||
|
"number",
|
||||||
|
"object",
|
||||||
|
"array",
|
||||||
|
"cannot read property",
|
||||||
|
]
|
||||||
// this is a portion of a specific string always output by handlebars in the case of a syntax error
|
// this is a portion of a specific string always output by handlebars in the case of a syntax error
|
||||||
const invalidCases = [`expecting '`]
|
const invalidCases = [`expecting '`]
|
||||||
// don't really need a real context to check if its valid
|
// don't really need a real context to check if its valid
|
||||||
|
|
Loading…
Reference in New Issue