UNPKG

apiconnect-cli-login-bluemix

Version:

Plugin for IBM API Connect Developer Toolkit.

33 lines (25 loc) 846 B
/********************************************************* {COPYRIGHT-TOP} *** * Licensed Materials - Property of IBM * 5725-Z22, 5725-Z63, 5725-U33, 5725-Z63 * * (C) Copyright IBM Corporation 2016, 2017 * * All Rights Reserved. * US Government Users Restricted Rights - Use, duplication or disclosure * restricted by GSA ADP Schedule Contract with IBM Corp. ********************************************************** {COPYRIGHT-END} **/ // Node module: apiconnect-cli-login-bluemix 'use strict'; /* eslint-disable no-extend-native */ if (!String.prototype.includes) { String.prototype.includes = function(search, start) { if (!start) { start = 0; } if (start + search.length > this.length) { return false; } return this.indexOf(search, start) !== -1; }; } /* eslint-enable no-extend-native */