Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.

Commit d5706f8

Browse files
2 parents 0ce0e57 + 1e1abe6 commit d5706f8

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

README.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
# 🍒 Vue Currency Filter
22

33
<p align="center">
4-
<a href="https://mazipan.github.io/vue-currency-filter/" target="_blank" rel="noopener noreferrer"><img width="128" src="https://raw.githubusercontent.com/mazipan/vue-currency-filter/master/assets/VueJS-Currency-128px.png" alt="Vue Currency Logo"></a>
4+
<a href="https://mazipan.github.io/vue-currency-filter/" target="_blank" rel="noopener noreferrer">
5+
<img
6+
width="128" src="https://raw.githubusercontent.com/mazipan/vue-currency-filter/master/assets/VueJS-Currency-128px.png"
7+
alt="Vue Currency Logo" />
8+
</a>
59
<h2 align="center">Lightweight vue currency filter based on accounting.js<h2>
610
</p>
711

812
<p align="center">
913
<a href="https://www.npmjs.com/package/vue-currency-filter">
10-
<img height="15" src="https://img.shields.io/npm/v/vue-currency-filter.svg" alt="NPM Version">
14+
<img height="20" src="https://img.shields.io/npm/v/vue-currency-filter.svg" alt="NPM Version">
1115
</a>
1216
<a href="https://bundlephobia.com/result?p=vue-currency-filter">
13-
<img height="15" src="https://badgen.net/bundlephobia/minzip/vue-currency-filter" alt="Bundlephobia Size">
17+
<img height="20" src="https://badgen.net/bundlephobia/minzip/vue-currency-filter" alt="Bundlephobia Size">
1418
</a>
1519
<a href="https://www.npmjs.com/package/vue-currency-filter">
16-
<img height="15" src="https://img.shields.io/npm/dt/vue-currency-filter.svg" alt="Download All Time">
20+
<img height="20" src="https://img.shields.io/npm/dt/vue-currency-filter.svg" alt="Download All Time">
1721
</a>
1822
<a href="https://travis-ci.org/mazipan/vue-currency-filter">
19-
<img height="15" src="https://img.shields.io/travis/mazipan/vue-currency-filter.svg" alt="Travis Build">
23+
<img height="20" src="https://img.shields.io/travis/mazipan/vue-currency-filter.svg" alt="Travis Build">
2024
</a>
2125
<a href="#contributors">
22-
<img height="15" src="https://img.shields.io/badge/all_contributors-4-orange.svg" alt="All Contributors">
26+
<img height="20" src="https://img.shields.io/badge/all_contributors-4-orange.svg" alt="All Contributors">
2327
</a>
2428
</p>
2529

@@ -185,7 +189,8 @@ import Component from "../pages/myComponent.vue";
185189

186190
describe("test myComponent", () => {
187191
it("vue-currency-filter should working correctly", () => {
188-
let localVue = createLocalVue();
192+
const localVue = createLocalVue();
193+
189194
localVue.use(VueCurrencyFilter, {
190195
symbol: "$",
191196
thousandsSeparator: ",",
@@ -195,11 +200,11 @@ describe("test myComponent", () => {
195200
symbolSpacing: true
196201
});
197202

198-
let wrapper = shallowMount(Component, {
203+
const wrapper = shallowMount(Component, {
199204
localVue
200205
});
201206

202-
let result = wrapper.find(".curr");
207+
const result = wrapper.find(".curr");
203208
expect(result.text()).toEqual("$ 1,000.00");
204209
});
205210
});
@@ -211,10 +216,11 @@ See sample test here: [https://codesandbox.io/s/6xk1mv694n](https://codesandbox.
211216

212217
If you'd like to contribute, head to the [contributing guidelines](/CONTRIBUTING.md). Inside you'll find directions for opening issues, coding standards, and notes on development.
213218

214-
## Credit
219+
## Credits
215220

221+
- [Vue](https://vuejs.org) for amazing framework
222+
- [Jetbrain](https://www.jetbrains.com/?from=vue-currency-filter) for amazing support with free license for WebStorm IDE
216223
- [@iqbalhood](https://github.com/iqbalhood) as logo creator (see [#19](https://github.com/mazipan/vue-currency-filter/issues/19))
217-
- [Jetbrain](https://www.jetbrains.com/?from=vue-currency-filter) for amazing WebStorm IDE
218224

219225
[<img src="https://raw.githubusercontent.com/mazipan/vue-currency-filter/master/jetbrains.png" width="100px;" />](https://www.jetbrains.com/?from=vue-currency-filter)
220226

0 commit comments

Comments
 (0)