UNPKG

spotify-web-api-node

Version:
15 lines (11 loc) 308 B
'use strict'; var Request = require('./base-request'); var DEFAULT_HOST = 'accounts.spotify.com', DEFAULT_PORT = 443, DEFAULT_SCHEME = 'https'; module.exports.builder = function() { return Request.builder() .withHost(DEFAULT_HOST) .withPort(DEFAULT_PORT) .withScheme(DEFAULT_SCHEME); };