blob: d75db6457bee3c672e7fa5245fa84c397b44a9f8 [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 an endPosition of 25.
features: [String.prototype.endsWith]
---*/
assert.sameValue('word'.endsWith('d', 25), true, '"word".endsWith("d", 25)');