shevchenko
Version:
JavaScript library for declension of Ukrainian anthroponyms
26 lines (23 loc) • 653 B
JavaScript
/**
* @file JavaScript library for declension of Ukrainian anthroponyms
* @module shevchenko
* @version 3.1.4
* @author Oleksandr Tolochko <shevchenko-js@tooleks.com>
* @license MIT
* @copyright 2017-2025 Oleksandr Tolochko <shevchenko-js@tooleks.com>
* @see {@link git+https://github.com/tooleks/shevchenko-js.git}
*/
;
class AppendCommandRunner {
constructor(command) {
this.command = command;
}
/**
* Appends the command value to the given value.
* Returns a new value.
*/
exec(value) {
return value + this.command.value;
}
}
exports.AppendCommandRunner = AppendCommandRunner;