mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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:
parent
5f107374a6
commit
4c055637a4
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue