-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from empress/fix-shorten-version
fix the location of the shorten-version helper
- Loading branch information
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { helper } from '@ember/component/helper'; | ||
|
||
export function shortenVersion([version = '']) { | ||
return version.slice( | ||
version.indexOf('v') + 1 || 0, | ||
version.lastIndexOf('.') === version.indexOf('.') | ||
? version.length | ||
: version.lastIndexOf('.'), | ||
); | ||
} | ||
|
||
export default helper(shortenVersion); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1 @@ | ||
/* eslint-disable prettier/prettier */ | ||
import { helper } from '@ember/component/helper'; | ||
|
||
export function shortenVersion([version='']) { | ||
return version.slice(version.indexOf('v') + 1 || 0, version.lastIndexOf('.') === version.indexOf('.') ? version.length : version.lastIndexOf('.')); | ||
} | ||
|
||
export default helper(shortenVersion); | ||
export { default } from 'guidemaker/helpers/shorten-version'; |