Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/topaxi/ember-pad
Ember string padding util and helper
https://github.com/topaxi/ember-pad
addon ember ember-pad pad string
Last synced: 24 days ago
JSON representation
Ember string padding util and helper
- Host: GitHub
- URL: https://github.com/topaxi/ember-pad
- Owner: topaxi
- License: mit
- Created: 2016-02-04T07:27:04.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-07T08:29:50.000Z (over 1 year ago)
- Last Synced: 2024-11-16T17:13:43.834Z (about 1 month ago)
- Topics: addon, ember, ember-pad, pad, string
- Language: JavaScript
- Size: 84 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ember-pad [![Build Status](https://travis-ci.org/topaxi/ember-pad.svg?branch=master)](https://travis-ci.org/topaxi/ember-pad)
This README outlines the details of collaborating on this Ember addon.
## Addon Installation
* `ember install ember-pad`
## Addon usage
As util function
```javascript
import { padStart } from 'ember-pad/utils/pad'
import { padEnd } from 'ember-pad/utils/pad'console.log(padStart(5, 2)) // '05'
console.log(padStart('a', 5, ' ')) // ' a'console.log(padEnd(5, 2)) // '500'
console.log(padEnd('a', 5, ' ')) // 'a '
```As handlebars helper
```handlebars
```
As template literal function:
```javascript
import { padStartTpl } from 'ember-pad/utils/pad'console.log(padStartTpl`${4}:${2}`(2)) // '04:02'
// OR
console.log(padStartTpl(2)`${4}:${2}`) // '04:02'
```### Installation
* `git clone `
* `cd my-addon`
* `npm install`### Linting
* `npm run lint:js`
* `npm run lint:js -- --fix`### Running tests
* `ember test` – Runs the test suite on the current Ember version
* `ember test --server` – Runs the test suite in "watch mode"
* `ember try:each` – Runs the test suite against multiple Ember versions### Running the dummy application
* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
License
This project is licensed under the [MIT License](LICENSE.md).