mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-06 10:03:12 +00:00
10 lines
214 B
CoffeeScript
10 lines
214 B
CoffeeScript
showLength = (thing) ->
|
|
"length: #{thing?.length}"
|
|
|
|
module.exports =
|
|
# replace long values with their length
|
|
lines: showLength
|
|
oldLines: showLength
|
|
newLines: showLength
|
|
ranges: showLength
|
|
update: showLength
|