Skip to content

Commit fd97b5c

Browse files
committed
Remove documentation for hasPeriod property
1 parent 19c74cd commit fd97b5c

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

lib/node_modules/@stdlib/string/base/format-interpolate/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ Format identifier objects can have the following properties:
6464
| specifier | format specifier (one of 's', 'c', 'd', 'i', 'u', 'b', 'o', 'x', 'X', 'e', 'E', 'f', 'F', 'g', 'G') |
6565
| flags | format flags (string with any of '0', ' ', '+', '-', '#') |
6666
| width | minimum field width (integer or `'*'`) |
67-
| hasPeriod | boolean indicating whether format identifier contains a period (`'.'`) |
6867
| precision | precision (integer or `'*'`) |
6968
| mapping | positional mapping from format specifier to argument index |
7069

lib/node_modules/@stdlib/string/base/format-interpolate/docs/types/index.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ interface FormatIdentifier {
3737
*/
3838
width?: string;
3939

40-
/**
41-
* Boolean indicating whether format identifier contains a period (`'.'`).
42-
*/
43-
hasPeriod?: boolean;
44-
4540
/**
4641
* Precision (integer or `'*'`).
4742
*/

lib/node_modules/@stdlib/string/base/format-tokenize/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ The format identifier objects have the following properties:
5353
| specifier | format specifier (one of 's', 'c', 'd', 'i', 'u', 'b', 'o', 'x', 'X', 'e', 'E', 'f', 'F', 'g', 'G') |
5454
| flags | format flags (string with any of '0', ' ', '+', '-', '#') |
5555
| width | minimum field width (integer or `'*'`) |
56-
| hasPeriod | boolean indicating whether format identifier contains a period (`'.'`) |
5756
| precision | precision (integer or `'*'`) |
5857
| mapping | positional mapping from format specifier to argument index |
5958

lib/node_modules/@stdlib/string/base/format-tokenize/docs/types/index.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ interface FormatIdentifier {
3737
*/
3838
width: string;
3939

40-
/**
41-
* Boolean indicating whether format identifier contains a period (`'.'`).
42-
*/
43-
hasPeriod: boolean;
44-
4540
/**
4641
* Precision (integer or `'*'`).
4742
*/

0 commit comments

Comments
 (0)