Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Thousandsseperator #31

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
163 changes: 117 additions & 46 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,129 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"*.js"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest"
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-explicit-any": [
"off"
],
"@typescript-eslint/no-var-requires": [
"off"
],
"@typescript-eslint/no-inferrable-types": [
"off"
],
"indent": [
"off",
"tab"
],
"linebreak-style": [
"warn",
"unix"
],
"no-mixed-spaces-and-tabs": [
"warn",
"smart-tabs"
],
"quotes": [
"warn",
"single",
{
"allowTemplateLiterals": true
}
],
"semi": [
"warn",
"always"
],
"comma-dangle": [
"warn",
"always-multiline"
]
"@typescript-eslint/lines-between-class-members": [
"error",
{
"exceptAfterOverload": true
}
],
"@typescript-eslint/no-explicit-any": [
"off"
],
"@typescript-eslint/no-inferrable-types": [
"off"
],
"prefer-const": [
"warn"
],
"lines-between-class-members": [
"off"
],
"space-in-parens": [
"error",
"never"
],
"padding-line-between-statements": [
"warn",
{
"blankLine": "always",
"prev": "*",
"next": "*"
},
{
"blankLine": "always",
"prev": "import",
"next": "*"
},
{
"blankLine": "never",
"prev": "import",
"next": "import"
},
{
"blankLine": "any",
"prev": [
"const",
"let",
"var"
],
"next": [
"const",
"let",
"var"
]
},
{
"blankLine": "any",
"prev": [
"expression"
],
"next": [
"expression"
]
},
{
"blankLine": "any",
"prev": [
"case",
"default"
],
"next": [
"case",
"default"
]
}
],
"indent": [
"off",
4
],
"linebreak-style": [
"warn",
"unix"
],
"keyword-spacing": [
"warn",
{
"before": true
}
],
"no-mixed-spaces-and-tabs": [
"warn",
"smart-tabs"
],
"quotes": [
"warn",
"single",
{
"allowTemplateLiterals": true
}
],
"semi": [
"warn",
"always"
],
"comma-dangle": [
"warn",
"always-multiline"
]
}
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ui
*.so
*.min.js
*.d.ts.map
*.d.ts
dist
# Packages #
############
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# CHANGELOG
#### 1.6.0
- updated dependencies
- fixed "deprecated" text

#### 1.5.0
- Using latest typescript version, please check if your environment still works with this version before upgrading!
Expand Down
37 changes: 29 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ formatString("image_{0}.jpg", id) // or String.format()
output: "image_2db5da20-1c5d-4f1a-8fd4-b41e34c8c5b5.jpg";
```

Locale Settings:

Currently only browsers are considered for this.
But you can edit your locale Settings by importing `locale`.
```typescript

// to adjust your locale:
import { locale } from 'typescript-string-operations'
locale.lang = 'en-EN';

```


Specifier available!
```typescript
var value = formatString("{0:L}", "APPLE"); //output "apple"
Expand All @@ -54,6 +67,11 @@ value = formatString("{0:s}", "21.03.2017 22:15:01") //output "2017-03-21T22:15:
value = formatString("{0:n}", 1000000);
//output "1.000.000"

value = formatString("{0:N}", 10000000000.01);
//output depends on your locale settings.
// en-EN -> 10,000,000,000
// de-DE -> 10.000.000.000,01

value = formatString("{0:00}", 1);
//output "01"
```
Expand All @@ -74,14 +92,17 @@ format("the {type:U} is {color:L} shipped on {shippingDate:s} with an amount of
```


| Specifier | Result |
| :-------------: |:---------------------------:|
| `L` | LowerCase |
| `U` | UpperCase |
| `d` | ShortDatePattern |
| `s` | SortableDateTimePattern |
| `n` | Thousand seperator |
| `00` | Padding numbers |
| Specifier | Result |
| :-------------: | :---------------------------------------------: |
| `L` | LowerCase |
| `U` | UpperCase |
| `d` | ShortDatePattern |
| `s` | SortableDateTimePattern |
| `n` | Thousand seperator |
| `N` | Thousand seperator, with respecting locale |
| `x` | Hexadecimal |
| `X` | Hexadecimal Uppercase |
| `00` | Padding numbers |



Expand Down
69 changes: 0 additions & 69 deletions index.d.ts

This file was deleted.

Loading