Skip to content
View bsdahl's full-sized avatar
🇺🇸
🇺🇸

Block or report bsdahl

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
bsdahl/README.md

Hi there 👋

Pinned Loading

  1. Watchdog timeout utility for aws ser... Watchdog timeout utility for aws serverless applications.
    1
    export function watchDog(event, context) {
    2
      let messageStack = [];
    3
      let timeoutId;
    4
    
                  
    5
      const push = function(message) {
  2. Function that will find intersecting... Function that will find intersecting keys for n number of object arguments.
    1
    export function intersectingKeys(...objects) {
    2
      return objects
    3
        .map((object) => Object.keys(object))
    4
        .sort((a, b) => a.length - b.length)
    5
        .reduce((a, b) => a.filter((key) => b.includes(key)));
  3. Function to determine if intersectin... Function to determine if intersecting keys are equal
    1
    export function areIntersectingKeysEqual(...objects) {
    2
      return objects
    3
        .map((object) => Object.keys(object))
    4
        .sort((a, b) => a.length - b.length)
    5
        .reduce((a, b) => a.filter((key) => b.includes(key)))
  4. microsoft/vscode microsoft/vscode Public

    Visual Studio Code

    TypeScript 180k 37.2k