htd-lync
Version:
This library is meant to be used to interact with an HTD Lync 12
14 lines (11 loc) • 477 B
JavaScript
cordova.define("cordova-plugin-chrome-apps-common.stubs", function(require, exports, module) {
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
exports.createStub = function(obj, propName, value) {
obj.__defineGetter__(propName, function() {
console.warn('Access made to stub: ' + obj.__namespace__ + '.' + propName);
return value;
});
};
});