Skip to content

Commit

Permalink
efw-4.07.021
Browse files Browse the repository at this point in the history
  • Loading branch information
changkejun committed Sep 24, 2024
1 parent c5eea9f commit 4cf0ca9
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@
<td><a href="help/record.seek.md">seek</a></td>
<td><a href="help/record.sort.md">sort</a></td>
<td><a href="help/record.map.md">map</a></td>
<td><a href="help/record.makeAllKeysUpperCase.md">makeAllKeysUpperCase</a></td>
<td><a href="help/record.makeAllKeysLowerCase.md">makeAllKeysLowerCase</a></td>
</tr>
<tr><td></td>
<td><a href="help/record.getArray.md">getArray</a></td>
Expand Down
2 changes: 2 additions & 0 deletions README_J.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@
<td><a href="help/record.seek.md">seek</a></td>
<td><a href="help/record.sort.md">sort</a></td>
<td><a href="help/record.map.md">map</a></td>
<td><a href="help/record.makeAllKeysUpperCase.md">makeAllKeysUpperCase</a></td>
<td><a href="help/record.makeAllKeysLowerCase.md">makeAllKeysLowerCase</a></td>
</tr>
<tr><td></td>
<td><a href="help/record.getArray.md">getArray</a></td>
Expand Down
Binary file not shown.
28 changes: 28 additions & 0 deletions help/record.makeAllKeysLowerCase.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<H1>Record.makeAllKeysLowerCase</H1>

The makeAllKeysLowerCase function is established to change all keys of the array data to lower-case.

<h2>Sample</h2>

```javascript
var record = new Record([
{"data1":"hello world", "DATA2":123, "data3":new Date("2016/12/13") },
{"data1":"hello human", "DATA2":456, "data3":new Date("2016/12/14") }
]);

record.makeAllKeysLowerCase();
/* the data is changed to the next
[
{"data1":"hello world", "data2":123, "data3":"..." },
{"data1":"hello human", "data2":456, "data3":"..." }
]
*/

```

<h2>API</h2>

<table>
<tr><th>Calling</th><th>Returning</th></tr>
<tr><td>record .makeAllKeysLowerCase ( )</td><td>Record</td></tr>
</table>
28 changes: 28 additions & 0 deletions help/record.makeAllKeysUpperCase.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<H1>Record.makeAllKeysUpperCase</H1>

The makeAllKeysUpperCase function is established to change all keys of the array data to upper-case.

<h2>Sample</h2>

```javascript
var record = new Record([
{"data1":"hello world", "DATA2":123, "data3":new Date("2016/12/13") },
{"data1":"hello human", "DATA2":456, "data3":new Date("2016/12/14") }
]);

record.makeAllKeysUpperCase();
/* the data is changed to the next
[
{"DATA1":"hello world", "DATA2":123, "DATA3":"..." },
{"DATA1":"hello human", "DATA2":456, "DATA3":"..." }
]
*/

```

<h2>API</h2>

<table>
<tr><th>Calling</th><th>Returning</th></tr>
<tr><td>record .makeAllKeysUpperCase ( )</td><td>Record</td></tr>
</table>
2 changes: 1 addition & 1 deletion help/record.map.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<H1>Record.map</H1>

The sort function is established to change the array data format.
The map function is established to change the array data format.

<h2>Sample</h2>

Expand Down

0 comments on commit 4cf0ca9

Please sign in to comment.