mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
27
react-app/node_modules/lodash/string/padLeft.js
generated
vendored
Normal file
27
react-app/node_modules/lodash/string/padLeft.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
var createPadDir = require('../internal/createPadDir');
|
||||
|
||||
/**
|
||||
* Pads `string` on the left side if it's shorter than `length`. Padding
|
||||
* characters are truncated if they exceed `length`.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @category String
|
||||
* @param {string} [string=''] The string to pad.
|
||||
* @param {number} [length=0] The padding length.
|
||||
* @param {string} [chars=' '] The string used as padding.
|
||||
* @returns {string} Returns the padded string.
|
||||
* @example
|
||||
*
|
||||
* _.padLeft('abc', 6);
|
||||
* // => ' abc'
|
||||
*
|
||||
* _.padLeft('abc', 6, '_-');
|
||||
* // => '_-_abc'
|
||||
*
|
||||
* _.padLeft('abc', 3);
|
||||
* // => 'abc'
|
||||
*/
|
||||
var padLeft = createPadDir();
|
||||
|
||||
module.exports = padLeft;
|
Reference in New Issue
Block a user