maia-util
Version:
Utility math and music functions supporting various applications by Music Artificial Intelligence Algorithms, Inc.
19 lines (17 loc) • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = my_last_string;
function my_last_string(a_string) {
// Tom Collins 20/9/2015.
// In
// a_string String mandatory
// Out String
// This function returns the last element of a string as a string.
if (a_string.length === 0) {
return "";
} else {
return a_string[a_string.length - 1];
}
}