Browse Source

Linting.

gh-pages
mike12345567 6 years ago
parent
commit
83e8a45b91
  1. 2
      packages/string-templates/src/processors/index.js
  2. 6
      packages/string-templates/src/processors/preprocessor.js
  3. 4
      packages/string-templates/src/utilities.js

2
packages/string-templates/src/processors/index.js

@ -23,4 +23,4 @@ module.exports.preprocess = string => {
module.exports.postprocess = string => { module.exports.postprocess = string => {
return process(string, postprocessor.processors) return process(string, postprocessor.processors)
} }

6
packages/string-templates/src/processors/preprocessor.js

@ -1,9 +1,5 @@
const { HelperNames } = require("../helpers") const { HelperNames } = require("../helpers")
const { const { swapStrings, isAlphaNumeric, FIND_HBS_REGEX } = require("../utilities")
swapStrings,
isAlphaNumeric,
FIND_HBS_REGEX,
} = require("../utilities")
const PreprocessorNames = { const PreprocessorNames = {
SWAP_TO_DOT: "swap-to-dot-notation", SWAP_TO_DOT: "swap-to-dot-notation",

4
packages/string-templates/src/utilities.js

@ -22,6 +22,4 @@ module.exports.removeNull = obj => {
) )
} }
module.exports.findHbsStatements = string => { module.exports.findHbsStatements = string => {}
}

Loading…
Cancel
Save