This file contains 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 getErrorMessage = (response?: Response): string => { | |
const fallbackMsg = 'an unknown error'; | |
if (!response) { | |
return fallbackMsg; | |
} | |
const code = typeof response.status === 'number' ? response.status : ''; | |
const status = `${code} ${response.statusText || ''}`.trim(); | |
return status ? `status code ${status}` : fallbackMsg; |
This file contains 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
version: 2 | |
updates: | |
- package-ecosystem: npm | |
directory: / | |
schedule: | |
interval: weekly | |
day: "saturday" | |
time: "08:00" | |
groups: | |
patches: |
This file contains 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
import { render as renderComponent } from '@testing-library/react'; | |
import userEvent from '@testing-library/user-event'; | |
type RenderArgs = Parameters<typeof renderComponent>; | |
export * from '@testing-library/react'; | |
/** | |
* Augments the RTL render with a userEvent user | |
*/ |
This file contains 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
#!/bin/bash | |
touch temp.text | |
lsof -n -i4TCP:$1 | awk '{print $2}' >temp.text | |
pidToStop=$( (sed '2q;d' temp.text)) | |
>temp.text | |
if [[ -n $pidToStop ]]; then | |
kill -9 $pidToStop | |
echo "Killed process $pidToStop running on port $1." | |
else |
This file contains 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
# rename all JS files in src/ to TS | |
find src -name '*.js' -exec bash -c 'git mv "$0" "${0%.js}.ts"' "{}" \; |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Adjacent hover highlight</title> | |
<style> | |
body { | |
font-family: sans-serif; | |
} |
This file contains 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
/** | |
* Escape RegExp special characters | |
* | |
* Inlined from [email protected] as we don't use ESM here. | |
* | |
* @see https://github.com/sindresorhus/escape-string-regexp | |
* | |
* @param {string} string | |
* @returns {RegEx} | |
*/ |
This file contains 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
// | |
// Grid mixins to support IE11 | |
// https://gist.github.com/johnhunter/1c7d332e7c2ed8351e36c40695b94d4f | |
// | |
/// Add Gap between the boxes | |
/// | |
/// @author Sascha Fuchs | |
/// | |
/// @group core - cssgrid |
This file contains 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
exports.default = function (socket) { | |
return function (store) { | |
return function (next) { | |
return function (action) { | |
if (action.meta && action.meta.remote) { | |
var clientId = store.getState().get('clientId'); | |
socket.emit('action', objectAssign({}, action, { clientId: clientId })); | |
} | |
return next(action); | |
}; |
NewerOlder