13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
sap.ui.define([], function () {
|
|
"use strict";
|
|
|
|
return {
|
|
padAndEncodeId: function (id) {
|
|
return encodeURIComponent(id.padStart(9, "%20"));
|
|
},
|
|
|
|
exampleUtility: function () {
|
|
return "Hello from utility!";
|
|
}
|
|
};
|
|
}); |