blob: 4c0a2f8c7b46a41938230042b50844eb7b83bb93 [file] [log] [blame]
// Copyright (C) 2020 ExE Boss. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-createbuiltinfunction
description: DateTimeFormat bound format function property order
info: |
Set order: "length", "name"
includes: [compareArray.js]
---*/
var formatFn = new Intl.DateTimeFormat().format;
assert.compareArray(
Object.getOwnPropertyNames(formatFn),
['length', 'name']
);