diff --git a/index.js b/index.js index a4302372..ed507875 100644 --- a/index.js +++ b/index.js @@ -13,6 +13,7 @@ function is(x) { var thirteenStrings = [ 1101, // Binary 13 "https://scontent.cdninstagram.com/hphotos-xtf1/t51.2885-15/s320x320/e35/12237511_444845689040315_1101385461_n.jpg", // Just because we can + "https://www.youtube.com/watch?v=pte3Jg-2Ax4", // Thirteen by Big Star "rem hadley", // And because he's 13 "Olivia Wilde", // AND because SHE's 13 diff --git a/test.js b/test.js index 8e371604..0871d406 100644 --- a/test.js +++ b/test.js @@ -16,6 +16,7 @@ tap.equal(isThirteen('Olivia Wilde'), true); tap.equal(isThirteen('https://scontent.cdninstagram.com/hphotos-xtf1/t51.2885-15/s320x320/e35/12237511_444845689040315_1101385461_n.jpg'), true); tap.equal(isThirteen('http://www.metal-archives.com/images/1/5/3/7/153772.jpg'), false); +tap.equal(isThirteen('https://www.youtube.com/watch?v=pte3Jg-2Ax4'), true); tap.equal(isThirteen(1101), true); tap.equal(isThirteen('1101'), true);