binance_bot/node_modules/esserializer/demo/env/Person.js
2025-01-07 19:06:55 +01:00

14 lines
185 B
JavaScript

/**
* Created by cshao on 2021-03-01.
*/
'use strict';
function Person(age) {
this.age = age;
this.isOld = function (){
return this.age > 60;
}
}
module.exports = Person;