This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
await Promise.all( | |
await Object.keys(pojo_data).map(async (x) => { | |
return await Object.keys(updateData).map((y) => { | |
if (x == y && pojo_data[x] != updateData[y]) { | |
console.log('different:', pojo_data[x]) | |
changedData[x] = pojo_data[x] | |
return { [x]: pojo_data[x] } | |
} | |
}) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Application Test and Release Workflow | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<input type="text" id="number" min="4" max="4"> | |
<button onclick="getProviderName()" type="button">Cek Provider</button> |
NewerOlder