b1-sl
Version:
library for connection and session management of the service layer sap b1
15 lines (12 loc) • 451 B
JavaScript
class Helpers {
static getNextLink(data) {
//console.log(data);
if (data["odata.nextLink"] == undefined) {
return '';
} else {
let value = data["odata.nextLink"].split("$skip=")[1].indexOf("&") > -1 ? data["odata.nextLink"].split("$skip=")[1].split("&")[0] : data["odata.nextLink"].split("$skip=")[1];
return '$Skip=' + value;
}
}
}
module.exports = Helpers;