mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05: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
|