Базовый handlebars
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-02-18 02:47:00 +03:00
parent 425843c5ad
commit 1c7d4cc74e
11 changed files with 189 additions and 42 deletions

9
output/OutputItem.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = class OutputItem {
constructor (name, parts, set) {
this.name = name + ' prime'
this.parts = parts
this.set = set
this.difference = set - parts
}
}