vue-app-sdk
Version:
15 lines (14 loc) • 400 B
JavaScript
import constant from "./constant.js";
import defineProperty from "./_defineProperty.js";
import identity from "./identity.js";
var baseSetToString = !defineProperty ? identity : function(func, string) {
return defineProperty(func, "toString", {
"configurable": true,
"enumerable": false,
"value": constant(string),
"writable": true
});
};
export {
baseSetToString as default
};