I hereby claim:
- I am shawncarr on github.
- I am shawncarr (https://keybase.io/shawncarr) on keybase.
- I have a public key whose fingerprint is C65D 78AE D8FB EC1B 0CC0 BB8F 78C2 9ADC 40BC 771E
To claim this, I am signing this object:
| import Decimal from 'decimal.js'; | |
| import { ZodDecimal } from './zodDecimal.ts'; | |
| describe('ZodDecimal', () => { | |
| const schema = ZodDecimal.create(); | |
| const gtFive = schema.gt(5); | |
| const gteFive = schema.gte(5); | |
| const minFive = schema.min(5); | |
| const ltFive = schema.lt(5); |
| document.onreadystatechange = function () { | |
| if (document.readyState == 'interactive') { | |
| if (document.forms.length !== 0 && location.search) { | |
| var query = location.search.substr(1); | |
| query.split('&').forEach(function (part) { | |
| if (part.indexOf('=') !== -1) { | |
| var item = part.split('='); | |
| var key = item[0]; | |
| var value = decodeURIComponent(item[1]); | |
| var inputs = document.getElementsByName('mauticform[' + key + ']'); |
| angular.module('app').directive('href', function() { | |
| return { | |
| restrict: 'A', | |
| compile: function(element, attr) { | |
| return function(scope, element) { | |
| if (attr.ngClick || attr.href === '' || attr.href === '#') { | |
| element.on('click', function(e) { | |
| e.preventDefault(); | |
| e.stopPropagation(); | |
| }); |
I hereby claim:
To claim this, I am signing this object:
| var Crypto = require('crypto'); | |
| /** | |
| * validates a mandrill webhook request | |
| * @param url string the url that mandrill sent the request to | |
| * @param key string the web hook key from https://mandrillapp.com/settings/webhooks | |
| * @param params array the request's POST parameters i.e. req.params | |
| * @param compareTo string the x-mandrill-signature header value | |
| */ | |
| var validate = function validate(url, key, params, compareTo) { |