@nxtedition/lib 16.0.9 → 16.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,6 +7,10 @@ import datefns from 'date-fns'
|
|
|
7
7
|
import JSON5 from 'json5'
|
|
8
8
|
import { request } from '@nxtedition/nxt-undici'
|
|
9
9
|
import undici from 'undici'
|
|
10
|
+
import fp from 'lodash/fp.js'
|
|
11
|
+
import _ from 'lodash'
|
|
12
|
+
import moment from 'moment-timezone'
|
|
13
|
+
import Timecode from 'smpte-timecode'
|
|
10
14
|
|
|
11
15
|
const kSuspend = Symbol('kSuspend')
|
|
12
16
|
const kEmpty = Symbol('kEmpty')
|
|
@@ -178,10 +182,10 @@ function pipe(value, ...fns) {
|
|
|
178
182
|
}
|
|
179
183
|
|
|
180
184
|
const globals = {
|
|
181
|
-
fp
|
|
182
|
-
_
|
|
183
|
-
moment
|
|
184
|
-
Timecode
|
|
185
|
+
fp,
|
|
186
|
+
_,
|
|
187
|
+
moment,
|
|
188
|
+
Timecode,
|
|
185
189
|
datefns,
|
|
186
190
|
JSON5,
|
|
187
191
|
pipe,
|