10 lines
171 B
JavaScript
Vendored
10 lines
171 B
JavaScript
Vendored
export default function A(ss) {
|
|
this.s = ss || "A"
|
|
}
|
|
A.prototype.foo = function (y) {
|
|
return y || "K";
|
|
};
|
|
A.prototype.bar = function (y) {
|
|
return y || "O";
|
|
};
|