node.js와 모듈에 대해 배웠는데 Underscore 라이브러리가 제대로 작동하지 않는 것 같습니다 ... Underscore에서 함수를 처음 사용할 때 _ 객체를 다음의 결과로 덮어 씁니다. 내 함수 호출. 아무도 무슨 일인지 알아? 예를 들어 다음은 node.js REPL의 세션입니다.
Admin-MacBook-Pro:test admin$ node
> require("./underscore-min")
{ [Function]
_: [Circular],
VERSION: '1.1.4',
forEach: [Function],
each: [Function],
map: [Function],
inject: [Function],
(...more functions...)
templateSettings: { evaluate: /<%([\s\S]+?)%>/g, interpolate: /<%=([\s\S]+?)%>/g },
template: [Function] }
> _.max([1,2,3])
3
> _.max([4,5,6])
TypeError: Object 3 has no method 'max'
at [object Context]:1:3
at Interface.<anonymous> (repl.js:171:22)
at Interface.emit (events.js:64:17)
at Interface._onLine (readline.js:153:10)
at Interface._line (readline.js:408:8)
at Interface._ttyWrite (readline.js:585:14)
at ReadStream.<anonymous> (readline.js:73:12)
at ReadStream.emit (events.js:81:20)
at ReadStream._emitKey (tty_posix.js:307:10)
at ReadStream.onData (tty_posix.js:70:12)
> _
3
Javascript 파일을 직접 만들어 가져 오면 제대로 작동하는 것 같습니다. Underscore 라이브러리에 특별한 것이 있습니까?