This commit is contained in:
mike12345567 2021-02-03 13:56:01 +00:00
parent 9ae53caa4d
commit 6fd080269b
2 changed files with 20 additions and 8 deletions

View File

@ -10,13 +10,15 @@ const dayjs = require("dayjs")
*/
function isOptions(val) {
return typeof(val) === "object" && typeof(val.hash) === "object"
return typeof val === "object" && typeof val.hash === "object"
}
function isApp(thisArg) {
return typeof(thisArg) === "object"
&& typeof(thisArg.options) === "object"
&& typeof(thisArg.app) === "object"
return (
typeof thisArg === "object" &&
typeof thisArg.options === "object" &&
typeof thisArg.app === "object"
)
}
function getContext(thisArg, locals, options) {

View File

@ -2,7 +2,11 @@ const handlebars = require("handlebars")
const { registerAll } = require("./helpers/index")
const processors = require("./processors")
const { cloneDeep } = require("lodash/fp")
const { removeNull, addConstants, removeHandlebarsStatements } = require("./utilities")
const {
removeNull,
addConstants,
removeHandlebarsStatements,
} = require("./utilities")
const manifest = require("../manifest.json")
const hbsInstance = handlebars.create()
@ -121,7 +125,13 @@ module.exports.makePropSafe = property => {
* @returns {boolean} Whether or not the input string is valid.
*/
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
const invalidCases = [`expecting '`]
// don't really need a real context to check if its valid