2015-04-17 00:14:11 +00:00
|
|
|
/**
|
2017-03-08 08:51:23 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-04-17 00:14:11 +00:00
|
|
|
*
|
|
|
|
* @providesModule sizesDiffer
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-05-02 17:09:58 +00:00
|
|
|
var dummySize = {width: undefined, height: undefined};
|
2015-04-17 00:14:11 +00:00
|
|
|
|
|
|
|
var sizesDiffer = function(one, two) {
|
|
|
|
one = one || dummySize;
|
|
|
|
two = two || dummySize;
|
|
|
|
return one !== two && (
|
2015-05-02 17:09:58 +00:00
|
|
|
one.width !== two.width ||
|
|
|
|
one.height !== two.height
|
2015-04-17 00:14:11 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = sizesDiffer;
|