-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
32 lines (32 loc) · 896 Bytes
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"use strict";
exports.__esModule = true;
var a = [];
a[0] = '*Emak gw trigger* \
Pas belom nikah : \"anak cewe jangan pulang malem2\" \
Pas udah nikah : \"lagi hamil, jgn pulang malem2\" \
Pas p… https://t.co/F23eXxO0Ty';
a[1] = 'Dek ga pengen cfd an ta? neng loh pengen, yuk. \
EMO \
\
Satu kata mengambyarkan semuanya, gapapa dek aku tetep sayang,… https://t.co/bbHan89HwT';
a[2] = 'Wah ini parah\
\
Bisa bisanya saya ngerasa sedih di unfoll\
\
Padahal tidak berteman disosial media bukan berarti tidak… https://t.co/MY0zrhPfYv';
var rpn = require("request-promise-native");
var match = a[0].match(/[\s\S]*… (?<link>[\s\S]*?)$/);
var link = match ?
match.groups ?
match.groups.link ?
match.groups.link
: ""
: null
: null;
console.log(link);
if (link) {
rpn.get(link)
.then(function (res) {
console.log(res);
});
}