-
bitandbang You can also do:
const semver = require('semver') const version = '11.2.0' const major = semver.major(version) const propertyAsAnObject = { [major]: version }
const semver = require('semver')
const version = '11.2.0'
const major = semver.major(version)
const propertyAsAnObject = {
[major]: version
}