085d099040
Edited code to be ES6, added eslint and some basic linting configuration,(also includes husky for auto eslint before push)
7 lines
190 B
JavaScript
7 lines
190 B
JavaScript
const getAllFreePublicClaims = require('../helpers/functions/getAllFreePublicClaims.js')
|
|
|
|
module.exports = {
|
|
getAllClaims (claimName) {
|
|
return getAllFreePublicClaims(claimName)
|
|
},
|
|
}
|