From 249bedf2f5bec9c699504215f7127535c6ae80e7 Mon Sep 17 00:00:00 2001 From: Patrick Slough Date: Thu, 24 Mar 2016 10:32:28 -0500 Subject: [PATCH] Add Thirteen by Big Star Needs more folk rock hits from 1972 --- index.js | 1 + test.js | 1 + 2 files changed, 2 insertions(+) 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);