mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 18:20:09 +02:00
11 lines
180 B
CoffeeScript
11 lines
180 B
CoffeeScript
_ = require "underscore"
|
|
|
|
module.exports =
|
|
|
|
areSame: (lines1, lines2)->
|
|
if !Array.isArray(lines1) or !Array.isArray(lines2)
|
|
return false
|
|
|
|
return _.isEqual(lines1, lines2)
|
|
|