CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
whitespace.js11 linesDownload Raw Back to test
1'use strict';2 3var parse = require('../');4var test = require('tape');5 6test('whitespace should be whitespace', function (t) {7	t.plan(1);8	var x = parse(['-x', '\t']).x;9	t.equal(x, '\t');10});11 
basant307/AI_Governance_Project · CoolFace