2020-05-06 06:09:15 -04:00
|
|
|
/* eslint-disable
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-05-06 06:08:21 -04:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS103: Rewrite code to no longer use __guard__
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-06 06:09:33 -04:00
|
|
|
const _ = require('lodash')
|
2019-08-08 09:10:54 -04:00
|
|
|
|
2020-05-06 06:09:33 -04:00
|
|
|
const showLength = function (thing) {
|
|
|
|
if (thing != null ? thing.length : undefined) {
|
|
|
|
return thing.length
|
|
|
|
} else {
|
|
|
|
return thing
|
|
|
|
}
|
|
|
|
}
|
2019-08-08 09:10:54 -04:00
|
|
|
|
2020-05-06 06:09:33 -04:00
|
|
|
const showUpdateLength = function (update) {
|
|
|
|
if ((update != null ? update.op : undefined) instanceof Array) {
|
|
|
|
const copy = _.cloneDeep(update)
|
|
|
|
copy.op.forEach(function (element, index) {
|
|
|
|
if (
|
2021-07-13 07:04:42 -04:00
|
|
|
__guard__(element != null ? element.i : undefined, x => x.length) !=
|
2020-05-06 06:09:33 -04:00
|
|
|
null
|
|
|
|
) {
|
|
|
|
copy.op[index].i = element.i.length
|
|
|
|
}
|
|
|
|
if (
|
2021-07-13 07:04:42 -04:00
|
|
|
__guard__(element != null ? element.d : undefined, x1 => x1.length) !=
|
2020-05-06 06:09:33 -04:00
|
|
|
null
|
|
|
|
) {
|
|
|
|
copy.op[index].d = element.d.length
|
|
|
|
}
|
|
|
|
if (
|
2021-07-13 07:04:42 -04:00
|
|
|
__guard__(element != null ? element.c : undefined, x2 => x2.length) !=
|
2020-05-06 06:09:33 -04:00
|
|
|
null
|
|
|
|
) {
|
|
|
|
return (copy.op[index].c = element.c.length)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return copy
|
|
|
|
} else {
|
|
|
|
return update
|
|
|
|
}
|
|
|
|
}
|
2018-03-07 11:16:19 -05:00
|
|
|
|
2020-05-06 06:08:21 -04:00
|
|
|
module.exports = {
|
2020-05-06 06:09:33 -04:00
|
|
|
// replace long values with their length
|
|
|
|
lines: showLength,
|
|
|
|
oldLines: showLength,
|
|
|
|
newLines: showLength,
|
|
|
|
docLines: showLength,
|
|
|
|
newDocLines: showLength,
|
|
|
|
ranges: showLength,
|
2021-07-13 07:04:42 -04:00
|
|
|
update: showUpdateLength,
|
2020-05-06 06:09:33 -04:00
|
|
|
}
|
2020-05-06 06:08:21 -04:00
|
|
|
|
|
|
|
function __guard__(value, transform) {
|
2020-05-06 06:09:33 -04:00
|
|
|
return typeof value !== 'undefined' && value !== null
|
|
|
|
? transform(value)
|
|
|
|
: undefined
|
|
|
|
}
|