1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

Remove log statements

This commit is contained in:
Andrew Kingston 2021-01-21 11:33:08 +00:00
parent 34cc4ac5bf
commit 7eb8b86c31

View file

@ -81,8 +81,6 @@ module.exports.processStringSync = (string, context) => {
if (typeof string !== "string") {
throw "Cannot process non-string types."
}
console.log(string)
console.log(context)
let template
string = preprocess(string)
// this does not throw an error when template can't be fulfilled, have to try correct beforehand