Skip to content

Commit 77e1848

Browse files
committed
Use string.prototype.trim instead of relying on String#trim, for ES3.
1 parent 1e22819 commit 77e1848

11 files changed

+24
-13
lines changed

lib/test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ var path = require('path');
44
var inherits = require('inherits');
55
var EventEmitter = require('events').EventEmitter;
66
var has = require('has');
7+
var trim = require('string.prototype.trim');
78

89
module.exports = Test;
910

@@ -101,7 +102,7 @@ Test.prototype.test = function (name, opts, cb) {
101102
};
102103

103104
Test.prototype.comment = function (msg) {
104-
this.emit('result', msg.trim().replace(/^#\s*/, ''));
105+
this.emit('result', trim(msg).replace(/^#\s*/, ''));
105106
};
106107

107108
Test.prototype.plan = function (n) {

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"inherits": "~2.0.1",
1818
"object-inspect": "~1.0.0",
1919
"resumer": "~0.0.0",
20+
"string.prototype.trim": "^1.1.1",
2021
"through": "~2.3.4"
2122
},
2223
"devDependencies": {

test/array.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
var falafel = require('falafel');
22
var tape = require('../');
33
var tap = require('tap');
4+
var trim = require('string.prototype.trim');
45

56
tap.test('array test', function (tt) {
67
tt.plan(1);
@@ -13,7 +14,7 @@ tap.test('array test', function (tt) {
1314
tc.on('end', function () {
1415
var rs = rows.map(function (r) {
1516
if (r && typeof r === 'object') {
16-
return { id : r.id, ok : r.ok, name : r.name.trim() };
17+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1718
}
1819
else return r;
1920
});

test/end-as-callback.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var tap = require("tap");
22
var tape = require("../");
3+
var trim = require('string.prototype.trim');
34

45
tap.test("tape assert.end as callback", function (tt) {
56
var test = tape.createHarness({ exit: false })
@@ -10,7 +11,7 @@ tap.test("tape assert.end as callback", function (tt) {
1011
tc.on("end", function () {
1112
var rs = rows.map(function (r) {
1213
return r && typeof r === "object" ?
13-
{ id: r.id, ok: r.ok, name: r.name.trim() } :
14+
{ id: r.id, ok: r.ok, name: trim(r.name) } :
1415
r
1516
})
1617

test/exit.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var tap = require('tap');
22
var spawn = require('child_process').spawn;
3+
var trim = require('string.prototype.trim');
34

45
tap.test('exit ok', function (t) {
56
t.plan(2);
@@ -11,7 +12,7 @@ tap.test('exit ok', function (t) {
1112
tc.on('end', function () {
1213
var rs = rows.map(function (r) {
1314
if (r && typeof r === 'object') {
14-
return { id : r.id, ok : r.ok, name : r.name.trim() };
15+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1516
}
1617
else return r;
1718
});
@@ -47,7 +48,7 @@ tap.test('exit fail', function (t) {
4748
tc.on('end', function () {
4849
var rs = rows.map(function (r) {
4950
if (r && typeof r === 'object') {
50-
return { id : r.id, ok : r.ok, name : r.name.trim() };
51+
return { id : r.id, ok : r.ok, name : trim(r.name) };
5152
}
5253
else return r;
5354
});
@@ -82,7 +83,7 @@ tap.test('too few exit', function (t) {
8283
tc.on('end', function () {
8384
var rs = rows.map(function (r) {
8485
if (r && typeof r === 'object') {
85-
return { id : r.id, ok : r.ok, name : r.name.trim() };
86+
return { id : r.id, ok : r.ok, name : trim(r.name) };
8687
}
8788
else return r;
8889
});
@@ -118,7 +119,7 @@ tap.test('more planned in a second test', function (t) {
118119
tc.on('end', function () {
119120
var rs = rows.map(function (r) {
120121
if (r && typeof r === 'object') {
121-
return { id : r.id, ok : r.ok, name : r.name.trim() };
122+
return { id : r.id, ok : r.ok, name : trim(r.name) };
122123
}
123124
else return r;
124125
});

test/fail.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
var falafel = require('falafel');
22
var tape = require('../');
33
var tap = require('tap');
4+
var trim = require('string.prototype.trim');
45

56
tap.test('array test', function (tt) {
67
tt.plan(1);
@@ -13,7 +14,7 @@ tap.test('array test', function (tt) {
1314
tc.on('end', function () {
1415
var rs = rows.map(function (r) {
1516
if (r && typeof r === 'object') {
16-
return { id : r.id, ok : r.ok, name : r.name.trim() };
17+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1718
}
1819
else return r;
1920
});

test/nested-sync-noplan-noend.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var tape = require('../');
22
var tap = require('tap');
3+
var trim = require('string.prototype.trim');
34

45
tap.test('nested sync test without plan or end', function (tt) {
56
tt.plan(1);
@@ -12,7 +13,7 @@ tap.test('nested sync test without plan or end', function (tt) {
1213
tc.on('end', function () {
1314
var rs = rows.map(function (r) {
1415
if (r && typeof r === 'object') {
15-
return { id : r.id, ok : r.ok, name : r.name.trim() };
16+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1617
}
1718
else return r;
1819
});

test/nested.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
var falafel = require('falafel');
22
var tape = require('../');
33
var tap = require('tap');
4+
var trim = require('string.prototype.trim');
45

56
tap.test('array test', function (tt) {
67
tt.plan(1);
@@ -13,7 +14,7 @@ tap.test('array test', function (tt) {
1314
tc.on('end', function () {
1415
var rs = rows.map(function (r) {
1516
if (r && typeof r === 'object') {
16-
return { id : r.id, ok : r.ok, name : r.name.trim() };
17+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1718
}
1819
else return r;
1920
});

test/only.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var tap = require('tap');
22
var tape = require('../');
3+
var trim = require('string.prototype.trim');
34

45
tap.test('tape only test', function (tt) {
56
var test = tape.createHarness({ exit: false });
@@ -11,7 +12,7 @@ tap.test('tape only test', function (tt) {
1112
tc.on('end', function () {
1213
var rs = rows.map(function (r) {
1314
if (r && typeof r === 'object') {
14-
return { id: r.id, ok: r.ok, name: r.name.trim() };
15+
return { id: r.id, ok: r.ok, name: trim(r.name) };
1516
}
1617
else {
1718
return r;

test/timeoutAfter.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var tape = require('../');
22
var tap = require('tap');
3+
var trim = require('string.prototype.trim');
34

45
tap.test('timeoutAfter test', function (tt) {
56
tt.plan(1);
@@ -12,7 +13,7 @@ tap.test('timeoutAfter test', function (tt) {
1213
tc.on('end', function () {
1314
var rs = rows.map(function (r) {
1415
if (r && typeof r === 'object') {
15-
return { id : r.id, ok : r.ok, name : r.name.trim() };
16+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1617
}
1718
else return r;
1819
});

test/too_many.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
var falafel = require('falafel');
22
var tape = require('../');
33
var tap = require('tap');
4+
var trim = require('string.prototype.trim');
45

56
tap.test('array test', function (tt) {
67
tt.plan(1);
@@ -13,7 +14,7 @@ tap.test('array test', function (tt) {
1314
tc.on('end', function () {
1415
var rs = rows.map(function (r) {
1516
if (r && typeof r === 'object') {
16-
return { id : r.id, ok : r.ok, name : r.name.trim() };
17+
return { id : r.id, ok : r.ok, name : trim(r.name) };
1718
}
1819
else return r;
1920
});

0 commit comments

Comments
 (0)