Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

28
static/js/ketcher2/node_modules/pad-left/index.js generated vendored Executable file
View File

@ -0,0 +1,28 @@
/*!
* pad-left <https://github.com/jonschlinkert/pad-left>
*
* Copyright (c) 2014-2015, Jon Schlinkert.
* Licensed under the MIT license.
*/
'use strict';
var repeat = require('repeat-string');
module.exports = function padLeft(str, num, ch) {
str = str.toString();
if (typeof num === 'undefined') {
return str;
}
if (ch === 0) {
ch = '0';
} else if (ch) {
ch = ch.toString();
} else {
ch = ' ';
}
return repeat(ch, num - str.length) + str;
};