Sha256: 9378061c93d7c095a6d68b9f119f815a820c53d0259de207c0fa83b8406a3490
Contents?: true
Size: 453 Bytes
Versions: 11
Compression:
Stored size: 453 Bytes
Contents
var test = require('tape'); var detect = require('../'); var fs = require('fs'); var src = fs.readFileSync(__dirname + '/files/right_hand.js'); test('globals on the right-hand of assignment', function (t) { t.plan(3); var scope = detect(src); t.same( scope.globals.implicit.sort(), [ 'exports', '__dirname', '__filename' ].sort() ); t.same(scope.globals.exported, []); t.same(scope.locals, { '': [] }); });
Version data entries
11 entries across 11 versions & 4 rubygems