You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Node/CommonJS when you require('lib/math') you are requiring math.js from a module named lib. This can be a point of confusion for newbies since it seems like you are requiring from a local path.
In Node/CommonJS when you
require('lib/math')
you are requiringmath.js
from a module namedlib
. This can be a point of confusion for newbies since it seems like you are requiring from a local path.The above might be clearer if it used either of these require paths:
The text was updated successfully, but these errors were encountered: