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
| const qs = require('querystring'); | |
| const http = require('http'); | |
| const https = require('https'); | |
| const assert = require('assert'); | |
| const config = { | |
| port: 3000, | |
| projectId: '', | |
| pipelineTriggerToken: '', | |
| secretToken: null |
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>DbSchema License Key Generator</title> | |
| </head> | |
| <body> |
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
| export function isFunction(arg) { | |
| return typeof arg === 'function'; | |
| } | |
| const cachedKeys = new Map(); | |
| /** | |
| * Get data by key | |
| * const data = {age: {value: 9}}; | |
| * getData(data, 'age.value') => 9 | |
| * getData(data, 'age.buzz') => 'age.buzz' | |
| * |
NewerOlder