UNPKG

aws-crt

Version:

NodeJS/browser bindings to the aws-c-* libraries

16 lines (12 loc) 362 B
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ /** @internal */ export function set_defined_property(object: any, propertyName: string, value: any) : boolean { if (value === undefined || value == null) { return false; } object[propertyName] = value; return true; }