Merge pull request #2205 from overleaf/ta-replace-loadash-map

Replace Lodash's Map with Native Array's Map

GitOrigin-RevId: 17dac98c39e55b68a60fb0a61708a650e088853a
This commit is contained in:
Timothée Alby 2019-10-07 15:30:59 +07:00 committed by sharelatex
parent 5f107374a6
commit 4c055637a4

View file

@ -42,7 +42,7 @@ module.exports = ClsiFormatChecker = {
},
_checkForConflictingPaths(resources, callback) {
const paths = _.map(resources, 'path')
const paths = resources.map(resource => resource.path)
const conflicts = _.filter(paths, function(path) {
const matchingPaths = _.filter(
@ -53,7 +53,7 @@ module.exports = ClsiFormatChecker = {
return matchingPaths.length > 0
})
const conflictObjects = _.map(conflicts, conflict => ({ path: conflict }))
const conflictObjects = conflicts.map(conflict => ({ path: conflict }))
return callback(null, conflictObjects)
},
@ -63,7 +63,7 @@ module.exports = ClsiFormatChecker = {
let totalSize = 0
let sizedResources = _.map(resources, function(resource) {
let sizedResources = resources.map(function(resource) {
const result = { path: resource.path }
if (resource.content != null) {
result.size = resource.content.replace(/\n/g).length