blob: 723a31b247a8055b15eb53a1ad852e7b97bf9ee6 [file] [log] [blame]
// Copyright (c) 2014 Ryan Lewis. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Ryan Lewis
description: >
endsWith should return true when called on 'word' and passed 'd'
and with no endPosition (defaults to 4).
features: [String.prototype.endsWith]
---*/
assert.sameValue('word'.endsWith('d'), true, '"word".endsWith("d")');