Skip to content

Commit

Permalink
fix: replace usage of deprecated isUndefined function from node utils…
Browse files Browse the repository at this point in the history
… by a similar

function from @silvermine/toolbox
  • Loading branch information
MatheusBaldi committed Dec 13, 2024
1 parent 61eeb47 commit 7f0d5a9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Response.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import _ from 'underscore';
import cookie from 'cookie';
import { Application, Request } from '.';
import { StringMap, isStringMap, StringArrayOfStringsMap } from '@silvermine/toolbox';
import { isUndefined, StringMap, isStringMap, StringArrayOfStringsMap } from '@silvermine/toolbox';
import { CookieOpts, ResponseResult } from './request-response-types';
import { StatusCodes } from './status-codes';
import { Callback } from 'aws-lambda';
import mimeLookup from './mime/mimeLookup';
import { isUndefined } from 'util';

export default class Response {

Expand Down

0 comments on commit 7f0d5a9

Please sign in to comment.