File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/es-errors/test

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js356 B · 20 lines
'use strict'; var test = require('tape'); var E = require('../');var R = require('../range');var Ref = require('../ref');var S = require('../syntax');var T = require('../type'); test('errors', function (t) {	t.equal(E, Error);	t.equal(R, RangeError);	t.equal(Ref, ReferenceError);	t.equal(S, SyntaxError);	t.equal(T, TypeError); 	t.end();});