Linting.
This commit is contained in:
parent
a254567bec
commit
766200e59e
|
@ -41,7 +41,8 @@ module.exports.processors = [
|
|||
|
||||
new Preprocessor(PreprocessorNames.FIX_FUNCTIONS, statement => {
|
||||
for (let specialCase of FUNCTION_CASES) {
|
||||
const toFind = `{ ${specialCase}`, replacement = `{${specialCase}`
|
||||
const toFind = `{ ${specialCase}`,
|
||||
replacement = `{${specialCase}`
|
||||
statement = statement.replace(new RegExp(toFind, "g"), replacement)
|
||||
}
|
||||
return statement
|
||||
|
|
|
@ -13,7 +13,10 @@ module.exports.swapStrings = (string, start, length, swap) => {
|
|||
|
||||
// removes null and undefined
|
||||
module.exports.removeNull = obj => {
|
||||
obj = _(obj).omitBy(_.isUndefined).omitBy(_.isNull).value()
|
||||
obj = _(obj)
|
||||
.omitBy(_.isUndefined)
|
||||
.omitBy(_.isNull)
|
||||
.value()
|
||||
for (let [key, value] of Object.entries(obj)) {
|
||||
// only objects
|
||||
if (typeof value === "object" && !Array.isArray(value)) {
|
||||
|
@ -25,7 +28,7 @@ module.exports.removeNull = obj => {
|
|||
|
||||
module.exports.addConstants = obj => {
|
||||
if (obj.now == null) {
|
||||
obj.now = (new Date()).toISOString()
|
||||
obj.now = new Date().toISOString()
|
||||
}
|
||||
return obj
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue