Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/VisualEditor/lib/ve/src/dm/ve.dm.DataString.js
Ðазад
/*! * VisualEditor DataString class. * * @copyright See AUTHORS.txt */ /** * Wrapper class to read document data as a plain text string. * * @class * @extends unicodeJS.TextString * @constructor * @param {Array} data Document data */ ve.dm.DataString = function VeDmDataString( data ) { this.data = data; }; /* Inheritance */ OO.inheritClass( ve.dm.DataString, unicodeJS.TextString ); /** * Reads the character from the specified position in the data. * * @param {number} position Position in data to read from * @return {string|null} Character at position, or null if not text */ ve.dm.DataString.prototype.read = function ( position ) { const dataAt = this.data[ position ]; // Check data is present at position and is not an element if ( dataAt !== undefined && dataAt.type === undefined ) { return typeof dataAt === 'string' ? dataAt : dataAt[ 0 ]; } else { return null; } };
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка