Remove log statements
This commit is contained in:
parent
e4b2792729
commit
53b9b2d926
|
@ -81,8 +81,6 @@ module.exports.processStringSync = (string, context) => {
|
||||||
if (typeof string !== "string") {
|
if (typeof string !== "string") {
|
||||||
throw "Cannot process non-string types."
|
throw "Cannot process non-string types."
|
||||||
}
|
}
|
||||||
console.log(string)
|
|
||||||
console.log(context)
|
|
||||||
let template
|
let template
|
||||||
string = preprocess(string)
|
string = preprocess(string)
|
||||||
// this does not throw an error when template can't be fulfilled, have to try correct beforehand
|
// this does not throw an error when template can't be fulfilled, have to try correct beforehand
|
||||||
|
|
Loading…
Reference in New Issue