mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Adjust conditional assignments.
This commit is contained in:
@@ -44,12 +44,12 @@
|
||||
/** Method and object shortcuts. */
|
||||
var phantom = root.phantom,
|
||||
process = root.process,
|
||||
amd = root.define && define.amd,
|
||||
amd = root.define ? define.amd : undefined,
|
||||
args = toArgs([1, 2, 3]),
|
||||
argv = process && process.argv,
|
||||
argv = process ? process.argv : undefined,
|
||||
defineProperty = Object.defineProperty,
|
||||
document = !phantom && root.document,
|
||||
body = root.document && root.document.body,
|
||||
document = phantom ? undefined : root.document,
|
||||
body = root.document ? root.document.body : undefined,
|
||||
create = Object.create,
|
||||
fnToString = funcProto.toString,
|
||||
freeze = Object.freeze,
|
||||
|
||||
Reference in New Issue
Block a user